diff --git a/login/templates/password_reset.html b/login/templates/password_reset.html index 3bc5e79..8217182 100644 --- a/login/templates/password_reset.html +++ b/login/templates/password_reset.html @@ -2,26 +2,23 @@ {% load i18n django_bootstrap5 %} {% block login_content %} - -
-
-

{% trans 'Password reset' %}

- {% trans "Forgotten your password? Enter your email address below, and we'll email instructions for setting a new one." %} -
+
+
+

{% trans "Password Reset" %}

+

{% trans "Enter your email address below, and we'll email instructions for setting a new one." %}

+
+ {% csrf_token %} + {% bootstrap_form form layout='floating' %} + {% bootstrap_form_errors form type='non_fields' %} +
+ +
+
+
-
-
-
-
- {% csrf_token %} - {% bootstrap_form form %} - {% bootstrap_form_errors form type='non_fields' %} -
- -
-
-
-
-
-{% endblock %} +
+ {% trans 'Back to login' %} +
+ +{% endblock %} \ No newline at end of file diff --git a/login/templates/password_reset_done.html b/login/templates/password_reset_done.html index 93e9cff..ebb219c 100644 --- a/login/templates/password_reset_done.html +++ b/login/templates/password_reset_done.html @@ -4,12 +4,14 @@ {% block login_content %}
-

{% trans 'Password reset sent' %}

- -

{% trans "We've emailed you instructions for setting your password, if an account exists with the email you entered. You should receive them shortly." %}

- -

{% trans "If you don't receive an email, please make sure you've entered the address you registered with, and check your spam folder." %}

+

{% trans 'Password reset sent' %}

+

{% trans "We've sent you an email with instructions to reset your password. If an account with the provided email exists, you should receive it shortly." %}

+

{% trans "If you don't receive an email, please check the email address you entered and look in your spam folder." %}

+ +
{% endblock %}