From 4a204e066311c56469da7f72975c1d0ff4afc62a Mon Sep 17 00:00:00 2001 From: HladczukLe Date: Mon, 13 Nov 2023 19:48:22 -0300 Subject: [PATCH] feat(LoginTemplate): add style to login page --- templates/registration/login.html | 39 +++++++++++++++++-------------- 1 file changed, 22 insertions(+), 17 deletions(-) diff --git a/templates/registration/login.html b/templates/registration/login.html index 069a545..ba22941 100644 --- a/templates/registration/login.html +++ b/templates/registration/login.html @@ -17,22 +17,27 @@ {% endif %}
- {% csrf_token %} - - - - - - - - - -
{{ form.username.label_tag }}{{ form.username }}
{{ form.password.label_tag }}{{ form.password }}
- - - +
+
+
+
Login
+
+ {% csrf_token %} +
+ + {{ form.username }} +
+
+ + {{ form.password }} +
+ + + {# Assumes you set up the password_reset view in your URLconf #} +

Lost password?

+
+
+
+
- -{# Assumes you set up the password_reset view in your URLconf #} -

Lost password?

{% endblock %}