Statistics
| Branch: | Tag: | Revision:

root / templates / registration / password_reset_confirm.html @ 064ecc91

History | View | Annotate | Download (636 Bytes)

1
{% extends "base.html" %}
2
{% load i18n %}
3
{% block title %}{% trans "Reset Password" %}{% endblock %}
4
{% block brcrmb_container %}{% endblock %}
5
{% block content %}
6

    
7
{% if validlink %}
8
<div id="passwordreset2" align="center">
9
    <h3>{% trans "Reset Password" %}</h3>
10
        <form method="post">
11
                {% csrf_token %}
12
                <table>
13
            {{ form.as_table }}
14
                        </table>
15
            <input class="submit" type="submit" value="{% trans "Submit" %}" />
16
        </form>
17
</div>
18
{% else %}
19
<h3>{% trans "Error" %}</h3>
20
<p>{% trans "There was an error processing your password change request." %}</p>
21
{% endif %}
22

    
23
{% endblock %}