diff options
Diffstat (limited to 'django/contrib/admin/templates/registration/password_reset_form.html')
| -rw-r--r-- | django/contrib/admin/templates/registration/password_reset_form.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/django/contrib/admin/templates/registration/password_reset_form.html b/django/contrib/admin/templates/registration/password_reset_form.html new file mode 100644 index 0000000000..4f9bcb5fc5 --- /dev/null +++ b/django/contrib/admin/templates/registration/password_reset_form.html @@ -0,0 +1,18 @@ +{% extends "admin/base_site" %} + +{% block breadcrumbs %}<div class="breadcrumbs"><a href="../">Home</a> › Password reset</div>{% endblock %} + +{% block title %}Password reset{% endblock %} + +{% block content %} + +<h1>Password reset</h1> + +<p>Forgotten your password? Enter your e-mail address below, and we'll reset your password and e-mail the new one to you.</p> + +<form action="" method="post"> +{% if form.email.errors %}{{ form.email.html_error_list }}{% endif %} +<p><label for="id_email">E-mail address:</label> {{ form.email }} <input type="submit" value="Reset my password" /></p> +</form> + +{% endblock %} |
