diff options
| author | Yigit Guler <yigit@hipo.biz> | 2014-11-15 16:50:22 +0200 |
|---|---|---|
| committer | Erik Romijn <eromijn@solidlinks.nl> | 2014-11-15 16:29:13 +0100 |
| commit | 9dde0a211e0be8829e03b3c0fb236c408f888d44 (patch) | |
| tree | 19b73b210770a5da76c872a3e6d5d7c95ff904d0 | |
| parent | 83d104d61af1ee7d8dc1192f0801a7cee972e9de (diff) | |
Fixed #23793 -- Clarified password reset messages.
| -rw-r--r-- | django/contrib/admin/templates/registration/password_reset_done.html | 2 | ||||
| -rw-r--r-- | django/contrib/auth/views.py | 2 |
2 files changed, 2 insertions, 2 deletions
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 %}<h1>{{ title }}</h1>{% endblock %} {% block content %} -<p>{% trans "We've emailed you instructions for setting your password. You should be receiving them shortly." %}</p> +<p>{% trans "We've emailed you instructions for setting your password, if an account exists with the email you entered. You should receive them shortly." %}</p> <p>{% trans "If you don't receive an email, please make sure you've entered the address you registered with, and check your spam folder." %}</p> 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) |
