user settings
[wolnelektury.git] / wolnelektury / templates / account / password_reset.html
1 {% extends "base.html" %}
2 {% load i18n %}
3 {% load ajaxable_tags %}
4 {% load account_tags %}
5
6 {% block titleextra %}{% trans "Password Reset" %}{% endblock %}
7
8 {% block body %}
9
10     <h1>{% trans "Password Reset" %}</h1>
11     <p class="normal-text">{% trans "Forgotten your password? Enter your e-mail address below, and we'll send you an e-mail allowing you to reset it." %}</p>
12     
13     <form method="POST" action="" class="cuteform hidelabels">
14         {% csrf_token %}
15         <ul>
16                 {{ password_reset_form|placeholdized_ul }}
17             <li><input type="submit" value="{% trans "Reset My Password" %}" /></li>
18          </ul>
19     </form>
20 {% endblock %}