summaryrefslogtreecommitdiff
path: root/django/conf/admin_templates/registration/password_reset_form.html
blob: c2dae2a5b30e92183253cdf24e3e1bf55308e0fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "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 %}