From 71549178ffa5b30852f86a43f8b7d5df333dba4a Mon Sep 17 00:00:00 2001 From: Jochen Mehlich Date: Wed, 28 Aug 2024 14:38:47 +0200 Subject: [PATCH] added dev login form Signed-off-by: Jochen Mehlich --- theme/login.html | 5 ----- theme/templates/base.html | 10 ++++------ theme/templates/login.html | 40 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 44 insertions(+), 11 deletions(-) delete mode 100644 theme/login.html create mode 100644 theme/templates/login.html diff --git a/theme/login.html b/theme/login.html deleted file mode 100644 index de26904..0000000 --- a/theme/login.html +++ /dev/null @@ -1,5 +0,0 @@ -{%extends "base.html" %} - -{% block content %} -

Django + Tailwind CSS + Flowbite

-{% endblock content %} \ No newline at end of file diff --git a/theme/templates/base.html b/theme/templates/base.html index 104363a..09307e8 100644 --- a/theme/templates/base.html +++ b/theme/templates/base.html @@ -2,19 +2,17 @@ - Django Tailwind + Zitate {% tailwind_css %} - +
-
- {% block content %} - {% endblock content %} -
+ {% block content %} + {% endblock content %}
diff --git a/theme/templates/login.html b/theme/templates/login.html new file mode 100644 index 0000000..431b094 --- /dev/null +++ b/theme/templates/login.html @@ -0,0 +1,40 @@ +{%extends "base.html" %} + +{% block content %} +
+
+
+
+

+ Sign in to your account +

+
+
+ + +
+
+ + +
+
+
+
+ +
+
+ +
+
+ Forgot password? +
+ +

+ Don’t have an account yet? Sign up +

+
+
+
+
+
+{% endblock content %} \ No newline at end of file