From 9870b11664260f7eab81092c73c18af0314e5e10 Mon Sep 17 00:00:00 2001 From: Chris Jean-Marie Date: Sat, 5 Oct 2024 03:59:53 +0000 Subject: [PATCH] Add authorized template --- backend/templates/authorized.html | 22 ++++++++++++ backend/templates/dashboard.html | 58 +++++++++++-------------------- backend/templates/useradmin.html | 8 ++--- 3 files changed, 46 insertions(+), 42 deletions(-) create mode 100644 backend/templates/authorized.html diff --git a/backend/templates/authorized.html b/backend/templates/authorized.html new file mode 100644 index 0000000..4cd345d --- /dev/null +++ b/backend/templates/authorized.html @@ -0,0 +1,22 @@ +{% extends "base.html" %} +{% block content %} +
+
+ +
+ {% block center %}{% endblock center %} +
+
+ +

Events

+
+
+
+{% endblock content %} \ No newline at end of file diff --git a/backend/templates/dashboard.html b/backend/templates/dashboard.html index d79bd02..f58d888 100644 --- a/backend/templates/dashboard.html +++ b/backend/templates/dashboard.html @@ -1,39 +1,21 @@ -{% extends "base.html" %} -{% block content %} -
-
- -
-

This will be the private information area for the extended Jean-Marie family.

-
-

Web links

-

TLC Creations

- -

Fonts

- -

Family tree

- -
-
-
- -

Events

-
-
+{% extends "authorized.html" %} +{% block center %} +

This will be the private information area for the extended Jean-Marie family.

+
+

Web links

+

TLC Creations

+ +

Fonts

+ +

Family tree

+
-{% endblock content %} \ No newline at end of file +{% endblock center %} \ No newline at end of file diff --git a/backend/templates/useradmin.html b/backend/templates/useradmin.html index b2f1fcb..9d7ca93 100644 --- a/backend/templates/useradmin.html +++ b/backend/templates/useradmin.html @@ -1,6 +1,6 @@ -{% extends "base.html" %} -{% block title %}User Profile{% endblock %} -{% block content %} +{% extends "authorized.html" %} +{% block title %}User Administration{% endblock %} +{% block center %}

Users

@@ -20,4 +20,4 @@ {% endfor %}
-{% endblock %} \ No newline at end of file +{% endblock center %} \ No newline at end of file