1 {% extends "base.html" %}
4 {% block title %}{% trans "Password reset" %}{% endblock %}
6 {% block content_enclosed %}
8 <h1>{% trans "Password reset" %}</h1>
10 <p>{% trans "Forgotten your password? Enter your email address below, and we'll email instructions for setting a new one." %}</p>
12 <form action="" method="post">{% csrf_token %}
13 {{ form.email.errors }}
14 <p><label for="id_email">{% trans 'Email address:' %}</label> {{ form.email }} <input type="submit" value="{% trans 'Reset my password' %}" /></p>