summaryrefslogtreecommitdiff
path: root/django/contrib/admin/templates/registration/password_reset_form.html
blob: 4f9bcb5fc58534e51cd4d66d276dc564f802436d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "admin/base_site" %}

{% block breadcrumbs %}<div class="breadcrumbs"><a href="../">Home</a> &rsaquo; 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 %}