diff --git a/templates/registration/password_reset_done.html b/templates/registration/password_reset_done.html index b8ef93c..760397d 100644 --- a/templates/registration/password_reset_done.html +++ b/templates/registration/password_reset_done.html @@ -2,5 +2,5 @@ {% load i18n %} {% block content %} -
{% trans "An email with password reset instructions has been sent." %}
+{% trans "If an account exists with the specified email address, an email with password reset instructions has been sent." %}
{% endblock %} diff --git a/templates/registration/password_reset_email.txt b/templates/registration/password_reset_email.txt index 6b7358c..e31abee 100644 --- a/templates/registration/password_reset_email.txt +++ b/templates/registration/password_reset_email.txt @@ -1,5 +1,10 @@ {% load i18n %} -{% blocktrans %}Reset password at {{ site_name }}{% endblocktrans %}: +{% blocktrans %}Someone, possibly you, requested to reset the password for your account at {{ site_name }}. + +If you did request to reset your password, please click on the following link to do so:{% endblocktrans %} + {% block reset_link %} {{ protocol }}://{{ domain }}{% url "auth_password_reset_confirm" uidb64=uid token=token %} {% endblock %} + +{% blocktrans %}If you did not make this request then please ignore this message.{% endblocktrans %}