Project

General

Profile

Statistics
| Branch: | Revision:

root / env / lib / python2.7 / site-packages / django / contrib / admin / templates / registration / password_reset_form.html @ 1a305335

History | View | Annotate | Download (746 Bytes)

1 1a305335 officers
{% extends "admin/base_site.html" %}
2
{% load i18n %}
3
{% load url from future %}
4
5
{% block breadcrumbs %}
6
<div class="breadcrumbs">
7
<a href="{% url 'admin:index' %}">{% trans 'Home' %}</a>
8
&rsaquo; {% trans 'Password reset' %}
9
</div>
10
{% endblock %}
11
12
{% block title %}{% trans "Password reset" %}{% endblock %}
13
14
{% block content %}
15
16
<h1>{% trans "Password reset" %}</h1>
17
18
<p>{% trans "Forgotten your password? Enter your e-mail address below, and we'll e-mail instructions for setting a new one." %}</p>
19
20
<form action="" method="post">{% csrf_token %}
21
{{ form.email.errors }}
22
<p><label for="id_email">{% trans 'E-mail address:' %}</label> {{ form.email }} <input type="submit" value="{% trans 'Reset my password' %}" /></p>
23
</form>
24
25
{% endblock %}