From 204a308be0f741726b9a620d88fbc22b22124c81 Mon Sep 17 00:00:00 2001
From: Arun Isaac
Date: Fri, 29 Dec 2023 18:55:37 +0000
Subject: Namespace all modules under gn2.
We move all modules under a gn2 directory. This is important for
"correct" packaging and deployment as a Guix service.
---
.../templates/new_security/forgot_password.html | 52 +++++++++
.../new_security/forgot_password_step2.html | 25 +++++
gn2/wqflask/templates/new_security/login_user.html | 119 +++++++++++++++++++++
.../templates/new_security/not_authenticated.html | 11 ++
.../templates/new_security/password_reset.html | 78 ++++++++++++++
.../templates/new_security/register_user.html | 105 ++++++++++++++++++
gn2/wqflask/templates/new_security/registered.html | 24 +++++
gn2/wqflask/templates/new_security/thank_you.html | 23 ++++
.../new_security/verification_still_needed.html | 26 +++++
9 files changed, 463 insertions(+)
create mode 100644 gn2/wqflask/templates/new_security/forgot_password.html
create mode 100644 gn2/wqflask/templates/new_security/forgot_password_step2.html
create mode 100644 gn2/wqflask/templates/new_security/login_user.html
create mode 100644 gn2/wqflask/templates/new_security/not_authenticated.html
create mode 100644 gn2/wqflask/templates/new_security/password_reset.html
create mode 100644 gn2/wqflask/templates/new_security/register_user.html
create mode 100644 gn2/wqflask/templates/new_security/registered.html
create mode 100644 gn2/wqflask/templates/new_security/thank_you.html
create mode 100644 gn2/wqflask/templates/new_security/verification_still_needed.html
(limited to 'gn2/wqflask/templates/new_security')
diff --git a/gn2/wqflask/templates/new_security/forgot_password.html b/gn2/wqflask/templates/new_security/forgot_password.html
new file mode 100644
index 00000000..60a221da
--- /dev/null
+++ b/gn2/wqflask/templates/new_security/forgot_password.html
@@ -0,0 +1,52 @@
+{% extends "base.html" %}
+{% block title %}Forgot Password{% endblock %}
+{% block content %}
+
+
+
+
+
+
+
Enter your email address and we'll send you a link to reset your password
+
+
+
+
+
+
+ {% endblock %}
+
+{% block js %}
+
+{% endblock %}
diff --git a/gn2/wqflask/templates/new_security/forgot_password_step2.html b/gn2/wqflask/templates/new_security/forgot_password_step2.html
new file mode 100644
index 00000000..1835fd4c
--- /dev/null
+++ b/gn2/wqflask/templates/new_security/forgot_password_step2.html
@@ -0,0 +1,25 @@
+{% extends "base.html" %}
+{% block title %}Register{% endblock %}
+{% block content %}
+
+ {{ header("Password Reset", "Check your email.") }}
+
+
+
+
+
+
You will receive an email with the subject {{ subject }}.
+
+
You must click the link in the email to reset the password.
+
+
If you don't see the email, check your spam folder.
+
+
+{% endblock %}
+
+{% block js %}
+
+
+{% endblock %}
diff --git a/gn2/wqflask/templates/new_security/login_user.html b/gn2/wqflask/templates/new_security/login_user.html
new file mode 100644
index 00000000..b8cdf6ef
--- /dev/null
+++ b/gn2/wqflask/templates/new_security/login_user.html
@@ -0,0 +1,119 @@
+{% extends "base.html" %}
+{% block title %}Register{% endblock %}
+{% block content %}
+
+
+
+ {{ flash_me() }}
+
+
Sign in here.
+
+ {% if redis_is_available: %}
+
+
+ {% endblock %}
+
+{% block css %}
+
+{% endblock %}
+
+{% block js %}
+
+{% endblock %}
diff --git a/gn2/wqflask/templates/new_security/not_authenticated.html b/gn2/wqflask/templates/new_security/not_authenticated.html
new file mode 100644
index 00000000..ea688346
--- /dev/null
+++ b/gn2/wqflask/templates/new_security/not_authenticated.html
@@ -0,0 +1,11 @@
+{% extends "base.html" %}
+{% block title %}Authentication Needed{% endblock %}
+{% block content %}
+
+
+
Please contact the data's owner or GN administrators if you believe you should have access to these data.
+
+
+{% endblock %}
\ No newline at end of file
diff --git a/gn2/wqflask/templates/new_security/password_reset.html b/gn2/wqflask/templates/new_security/password_reset.html
new file mode 100644
index 00000000..e21f075c
--- /dev/null
+++ b/gn2/wqflask/templates/new_security/password_reset.html
@@ -0,0 +1,78 @@
+{% extends "base.html" %}
+{% block title %}Register{% endblock %}
+{% block content %}
+
+ {{ header("Password Reset", "Create a new password.") }}
+
+
+
+
+
+
+
+
+
Enter your new password
+
+
+ {% if errors %}
+
+
Please note:
+
+ {% for error in errors %}
+ - {{error}}
+ {% endfor %}
+
+
+ {% endif %}
+
+
+
+
+
+{% endblock %}
+
+{% block js %}
+
+
+
+{% endblock %}
diff --git a/gn2/wqflask/templates/new_security/register_user.html b/gn2/wqflask/templates/new_security/register_user.html
new file mode 100644
index 00000000..c2895517
--- /dev/null
+++ b/gn2/wqflask/templates/new_security/register_user.html
@@ -0,0 +1,105 @@
+{% extends "base.html" %}
+{% block title %}Register{% endblock %}
+{% block content %}
+
+ {{ header("Register", "It's fast and easy to make an account.") }}
+
+
+
+
+
+
+
Already have an account?
+
+
+
Sign in using existing account
+
+
+
+
+
Don't have an account?
+
+
Register here
+
+ {% if errors %}
+
+
Please note:
+
+ {% for error in errors %}
+ - {{error}}
+ {% endfor %}
+
+
+ {% endif %}
+
+
+
+
+
+{% endblock %}
+
+{% block js %}
+
+
+
+{% endblock %}
diff --git a/gn2/wqflask/templates/new_security/registered.html b/gn2/wqflask/templates/new_security/registered.html
new file mode 100644
index 00000000..29889a97
--- /dev/null
+++ b/gn2/wqflask/templates/new_security/registered.html
@@ -0,0 +1,24 @@
+{% extends "base.html" %}
+{% block title %}Register{% endblock %}
+{% block content %}
+ {{ header("Almost Done", "Thanks for registering") }}
+
+
+
+
+
You will receive an email with the subject {{ subject }}.
+
+
You must click the link in the email to complete registration.
+
+
If you don't see the email, check your spam folder.
+
+
+{% endblock %}
+
+{% block js %}
+
+
+
+{% endblock %}
diff --git a/gn2/wqflask/templates/new_security/thank_you.html b/gn2/wqflask/templates/new_security/thank_you.html
new file mode 100644
index 00000000..d4f5e574
--- /dev/null
+++ b/gn2/wqflask/templates/new_security/thank_you.html
@@ -0,0 +1,23 @@
+{% extends "base.html" %}
+{% block title %}Register{% endblock %}
+{% block content %}
+ {{ header("Thank you", "Thanks for verifying") }}
+
+
+
+{% endblock %}
+
+{% block js %}
+
+
+{% endblock %}
diff --git a/gn2/wqflask/templates/new_security/verification_still_needed.html b/gn2/wqflask/templates/new_security/verification_still_needed.html
new file mode 100644
index 00000000..1f91fd8d
--- /dev/null
+++ b/gn2/wqflask/templates/new_security/verification_still_needed.html
@@ -0,0 +1,26 @@
+{% extends "base.html" %}
+{% block title %}Verification{% endblock %}
+{% block content %}
+ {{ header("Verification", "You still need to verify") }}
+
+
+
+
You still need to verify your e-mail address before you can sign in.
+
+
We've resent the verificaiton email.
+
+
Please check for an email with the subject {{ subject }}.
+
+
You must click the link in the email to complete registration.
+
+
If you don't see the email, check your spam folder.
+
+
+{% endblock %}
+
+{% block js %}
+
+
+{% endblock %}
--
cgit v1.2.3