aboutsummaryrefslogtreecommitdiff
path: root/gn2/wqflask/templates/new_security
diff options
context:
space:
mode:
authorAlexander Kabui2024-10-01 10:36:13 +0300
committerGitHub2024-10-01 10:36:13 +0300
commitf75ea839c34e73c916c30b6857611cfc618940dd (patch)
tree5f2cc86d18a44c4e0f253bcf632695085c341521 /gn2/wqflask/templates/new_security
parentae572dfe805defc4d40d173325178f5b08c080bf (diff)
parent5b840e6421ae5b20ce946642053ff702d0588f03 (diff)
downloadgenenetwork2-f75ea839c34e73c916c30b6857611cfc618940dd.tar.gz
Merge pull request #877 from genenetwork/feature/cleanup-base-fileHEADtesting
Feature/cleanup base file
Diffstat (limited to 'gn2/wqflask/templates/new_security')
-rw-r--r--gn2/wqflask/templates/new_security/forgot_password.html2
-rw-r--r--gn2/wqflask/templates/new_security/forgot_password_step2.html2
-rw-r--r--gn2/wqflask/templates/new_security/login_user.html2
-rw-r--r--gn2/wqflask/templates/new_security/not_authenticated.html4
-rw-r--r--gn2/wqflask/templates/new_security/password_reset.html2
-rw-r--r--gn2/wqflask/templates/new_security/register_user.html2
-rw-r--r--gn2/wqflask/templates/new_security/registered.html2
-rw-r--r--gn2/wqflask/templates/new_security/thank_you.html2
-rw-r--r--gn2/wqflask/templates/new_security/verification_still_needed.html2
9 files changed, 10 insertions, 10 deletions
diff --git a/gn2/wqflask/templates/new_security/forgot_password.html b/gn2/wqflask/templates/new_security/forgot_password.html
index 60a221da..80febda8 100644
--- a/gn2/wqflask/templates/new_security/forgot_password.html
+++ b/gn2/wqflask/templates/new_security/forgot_password.html
@@ -1,4 +1,4 @@
-{% extends "base.html" %}
+{% extends "index_page.html" %}
{% block title %}Forgot Password{% endblock %}
{% block content %}
diff --git a/gn2/wqflask/templates/new_security/forgot_password_step2.html b/gn2/wqflask/templates/new_security/forgot_password_step2.html
index 1835fd4c..f9063b4b 100644
--- a/gn2/wqflask/templates/new_security/forgot_password_step2.html
+++ b/gn2/wqflask/templates/new_security/forgot_password_step2.html
@@ -1,4 +1,4 @@
-{% extends "base.html" %}
+{% extends "index_page.html" %}
{% block title %}Register{% endblock %}
{% block content %}
diff --git a/gn2/wqflask/templates/new_security/login_user.html b/gn2/wqflask/templates/new_security/login_user.html
index b8cdf6ef..dd14cf49 100644
--- a/gn2/wqflask/templates/new_security/login_user.html
+++ b/gn2/wqflask/templates/new_security/login_user.html
@@ -1,4 +1,4 @@
-{% extends "base.html" %}
+{% extends "index_page.html" %}
{% block title %}Register{% endblock %}
{% block content %}
diff --git a/gn2/wqflask/templates/new_security/not_authenticated.html b/gn2/wqflask/templates/new_security/not_authenticated.html
index ea688346..0dcad7ee 100644
--- a/gn2/wqflask/templates/new_security/not_authenticated.html
+++ b/gn2/wqflask/templates/new_security/not_authenticated.html
@@ -1,4 +1,4 @@
-{% extends "base.html" %}
+{% extends "index_page.html" %}
{% block title %}Authentication Needed{% endblock %}
{% block content %}
<div class="container">
@@ -8,4 +8,4 @@
<p>Please contact the data's owner or GN administrators if you believe you should have access to these data.</p>
</div>
-{% endblock %} \ No newline at end of file
+{% endblock %}
diff --git a/gn2/wqflask/templates/new_security/password_reset.html b/gn2/wqflask/templates/new_security/password_reset.html
index e21f075c..6de77f89 100644
--- a/gn2/wqflask/templates/new_security/password_reset.html
+++ b/gn2/wqflask/templates/new_security/password_reset.html
@@ -1,4 +1,4 @@
-{% extends "base.html" %}
+{% extends "index_page.html" %}
{% block title %}Register{% endblock %}
{% block content %}
diff --git a/gn2/wqflask/templates/new_security/register_user.html b/gn2/wqflask/templates/new_security/register_user.html
index c2895517..6e9115ae 100644
--- a/gn2/wqflask/templates/new_security/register_user.html
+++ b/gn2/wqflask/templates/new_security/register_user.html
@@ -1,4 +1,4 @@
-{% extends "base.html" %}
+{% extends "index_page.html" %}
{% block title %}Register{% endblock %}
{% block content %}
diff --git a/gn2/wqflask/templates/new_security/registered.html b/gn2/wqflask/templates/new_security/registered.html
index 29889a97..651b5cf0 100644
--- a/gn2/wqflask/templates/new_security/registered.html
+++ b/gn2/wqflask/templates/new_security/registered.html
@@ -1,4 +1,4 @@
-{% extends "base.html" %}
+{% extends "index_page.html" %}
{% block title %}Register{% endblock %}
{% block content %}
{{ header("Almost Done", "Thanks for registering") }}
diff --git a/gn2/wqflask/templates/new_security/thank_you.html b/gn2/wqflask/templates/new_security/thank_you.html
index d4f5e574..ce15dab1 100644
--- a/gn2/wqflask/templates/new_security/thank_you.html
+++ b/gn2/wqflask/templates/new_security/thank_you.html
@@ -1,4 +1,4 @@
-{% extends "base.html" %}
+{% extends "index_page.html" %}
{% block title %}Register{% endblock %}
{% block content %}
{{ header("Thank you", "Thanks for verifying") }}
diff --git a/gn2/wqflask/templates/new_security/verification_still_needed.html b/gn2/wqflask/templates/new_security/verification_still_needed.html
index 1f91fd8d..9cbc7548 100644
--- a/gn2/wqflask/templates/new_security/verification_still_needed.html
+++ b/gn2/wqflask/templates/new_security/verification_still_needed.html
@@ -1,4 +1,4 @@
-{% extends "base.html" %}
+{% extends "index_page.html" %}
{% block title %}Verification{% endblock %}
{% block content %}
{{ header("Verification", "You still need to verify") }}