user settings
[wolnelektury.git] / wolnelektury / templates / account / password_change.html
1 {% extends "base.html" %}
2 {% load i18n %}
3 {% load ajaxable_tags %}
4
5 {% block titleextra %}{% trans "Change Password" %}{% endblock %}
6
7 {% block body %}
8     <h1>{% trans "Change Password" %}</h1>
9     
10     <form method="POST" action="" class="cuteform hidelabels">
11         {% csrf_token %}
12         <ul>
13             {{ password_change_form|placeholdized_ul }}
14             <li><input type="submit" name="action" value="{% trans "Change Password" %}"/></li>
15         </ul>
16     </form>
17 {% endblock %}