Add basic functionality for self-registration.
[cas.git] / src / accounts / templates / registration / password_reset_form.html
1 {% extends "base.html" %}
2 {% load i18n %}
3
4 {% block title %}{% trans "Password reset" %}{% endblock %}
5
6 {% block content_enclosed %}
7
8 <h1>{% trans "Password reset" %}</h1>
9
10 <p>{% trans "Forgotten your password? Enter your email address below, and we'll email instructions for setting a new one." %}</p>
11
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>
15 </form>
16
17 {% endblock %}