From d99dc3cf8afcd920a2e1062bc07cd9639c442b05 Mon Sep 17 00:00:00 2001 From: Matthew Iverson Date: Thu, 28 Nov 2024 22:47:47 -0500 Subject: [PATCH] Upload files to "templates" --- templates/base.html | 65 +++++++++++++++++++++++++++-- templates/login.html | 13 ++++++ templates/methodology.html | 2 +- templates/profile.html | 84 ++++++++++++++++++++++++++++++++++++++ templates/register.html | 82 +++++++++++++++++++++++++++++++++++++ 5 files changed, 242 insertions(+), 4 deletions(-) create mode 100644 templates/login.html create mode 100644 templates/profile.html create mode 100644 templates/register.html diff --git a/templates/base.html b/templates/base.html index d02e83f..c148861 100644 --- a/templates/base.html +++ b/templates/base.html @@ -4,7 +4,20 @@ {{ title }} - + + {% if theme == 'dark' %} + + {% elif theme == 'modern' %} + + {% elif theme == 'vampire' %} + + {% elif theme == 'nordic' %} + + {% elif theme == 'halloween' %} + + {% else %} + + {% endif %}
@@ -36,19 +49,65 @@ Rule Creation - Notebook + + {% if current_user.is_authenticated %} + Notebook + {{ current_user.username }} + {% else %} + Login + {% endif %} + + +
{{ random_tip }}
-
+
{% block content %}{% endblock %}
+ +{% endblock %}