lazy_user singe job only
[django_unres.git] / django_simple / authentication / templates / registration / password_reset_confirm.html
1 {% extends "base.html" %}
2 {% load i18n %}
3
4 {% block content %}
5
6 {% if validlink %}
7
8 <form method="post" action=".">
9   {% csrf_token %} 
10   {{ form.as_p }}
11
12   <input type="submit" value="{% trans 'Submit' %}" />
13 </form>
14
15 {% else %}
16
17 <p>{% trans "Password reset failed" %}</p>
18
19 {% endif %}
20
21 {% endblock %}