Password reset, standardize some stuff.
[cas.git] / src / accounts / templates / registration / password_change_form.html
1 {% extends "account/base.html" %}
2 {% load i18n static %}
3
4 {% block title %}{{ title }}{% endblock %}
5
6
7 {% block menu %}
8   {% with menu='password' %}
9     {{ block.super }}
10   {% endwith %}
11 {% endblock %}
12
13
14 {% block accounts-content %}
15   <h1>{{ title }}</h1>
16
17   <form method="post">
18     {% csrf_token %}
19     {% if form.errors %}
20       <p class="errornote">
21         {% if form.errors.items|length == 1 %}
22           {% trans "Please correct the error below." %}
23         {% else %}
24           {% trans "Please correct the errors below." %}
25         {% endif %}
26       </p>
27     {% endif %}
28
29     <p>{% trans "Please enter your old password, for security's sake, and then enter your new password twice so we can verify you typed it in correctly." %}</p>
30
31     {{ form.as_p }}
32
33     <p>
34       <input type="submit" value="{% trans 'Change my password' %}">
35     </p>
36
37   </form>
38
39 {% endblock %}