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