diff options
Diffstat (limited to 'django/contrib/admin/templates/registration/password_reset_done.html')
| -rw-r--r-- | django/contrib/admin/templates/registration/password_reset_done.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/django/contrib/admin/templates/registration/password_reset_done.html b/django/contrib/admin/templates/registration/password_reset_done.html new file mode 100644 index 0000000000..a8573e8e0e --- /dev/null +++ b/django/contrib/admin/templates/registration/password_reset_done.html @@ -0,0 +1,13 @@ +{% extends "admin/base_site" %} + +{% block breadcrumbs %}<div class="breadcrumbs"><a href="../">Home</a> › Password reset</div>{% endblock %} + +{% block title %}Password reset successful{% endblock %} + +{% block content %} + +<h1>Password reset successful</h1> + +<p>We've e-mailed a new password to the e-mail address you submitted. You should be receiving it shortly.</p> + +{% endblock %} |
