From e062ac387aa48c40f8cfba720cbbfc7fc86320d1 Mon Sep 17 00:00:00 2001 From: Alexander_Kabui Date: Thu, 26 Sep 2024 14:40:38 +0300 Subject: feat: Modify templates to extend from index_page. * This ensures we have the global search functionality included for all. --- gn2/wqflask/templates/new_security/forgot_password.html | 2 +- gn2/wqflask/templates/new_security/forgot_password_step2.html | 2 +- gn2/wqflask/templates/new_security/login_user.html | 2 +- gn2/wqflask/templates/new_security/not_authenticated.html | 4 ++-- gn2/wqflask/templates/new_security/password_reset.html | 2 +- gn2/wqflask/templates/new_security/register_user.html | 2 +- gn2/wqflask/templates/new_security/registered.html | 2 +- gn2/wqflask/templates/new_security/thank_you.html | 2 +- gn2/wqflask/templates/new_security/verification_still_needed.html | 2 +- 9 files changed, 10 insertions(+), 10 deletions(-) (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 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 %}
@@ -8,4 +8,4 @@

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 +{% 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") }} -- cgit v1.2.3