Statistics
| Branch: | Tag: | Revision:

root / astakos / im / templates / registration / password_reset_confirm.html @ 890b0eaf

History | View | Annotate | Download (437 Bytes)

1
{% extends 'base.html'%}
2

    
3
{% block title%}
4
        <h2>Please enter your new password</h2>
5
{% endblock title%}
6

    
7
{% block body %}
8
    {% if validlink %}
9
    <form action="" method="post">{% csrf_token %}
10
    {{ form.as_p }}
11
        <div class="actions">
12
          <button type="submit" class="btn primary">Go</button>
13
        </div>
14
      </form>
15
    {% else %}
16
    The password reset link was invalid
17
    {% endif %}
18
{% endblock body %}