diff --git a/static/css/styles.css b/static/css/styles.css index 53c9319e..224ff02d 100644 --- a/static/css/styles.css +++ b/static/css/styles.css @@ -1331,6 +1331,10 @@ input[type=file] { align-items: center; } +.justify-end { + justify-content: flex-end; +} + .justify-center { justify-content: center; } diff --git a/templates/account/login.html b/templates/account/login.html index 3f80af45..1236d6c3 100644 --- a/templates/account/login.html +++ b/templates/account/login.html @@ -56,25 +56,29 @@
- {% csrf_token %} + {% csrf_token %} - {% for field in form.visible_fields %} -
- - {{ field }} - {% if field.help_text %} - {{ field.help_text }} - {% endif %} + {% for field in form.visible_fields %} +
+ {% if field.label == "E-mail" or field.label == "Password" %} + {% else %} + + {% endif %} + {{ field }} + {% if field.help_text %} + {{ field.help_text }} + {% endif %} +
+ {% endfor %} + + {% if redirect_field_value %} + + {% endif %} + +
+ {% trans "Forgot Password?" %} +
- {% endfor %} - - {% if redirect_field_value %} - - {% endif %} - -