diff --git a/django/contrib/admin/templates/registration/password_reset_done.html b/django/contrib/admin/templates/registration/password_reset_done.html index d157306a91..c6fc3582cb 100644 --- a/django/contrib/admin/templates/registration/password_reset_done.html +++ b/django/contrib/admin/templates/registration/password_reset_done.html @@ -12,7 +12,7 @@ {% block content_title %}

{{ title }}

{% endblock %} {% block content %} -

{% trans "We've emailed you instructions for setting your password. You should be receiving them shortly." %}

+

{% 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." %}

diff --git a/django/contrib/auth/views.py b/django/contrib/auth/views.py index 4d2543a461..ed39c53b00 100644 --- a/django/contrib/auth/views.py +++ b/django/contrib/auth/views.py @@ -187,7 +187,7 @@ def password_reset_done(request, template_name='registration/password_reset_done.html', current_app=None, extra_context=None): context = { - 'title': _('Password reset successful'), + 'title': _('Password reset sent'), } if extra_context is not None: context.update(extra_context)