Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / templates / registration / password_reset_confirm.html @ 27e51b28

History | View | Annotate | Download (524 Bytes)

1
{% extends 'im/one_col_base.html'%}
2

    
3
{%block page.title %}Password reset{% endblock %}
4
{% block body %}
5
<div class="section">
6
    <h2>Please enter your new password</h2>
7
    {% if validlink %}
8
    <form action="" method="post" class="withlabels">{% csrf_token %}
9
    {% include "im/form_render.html" %}
10
    <div class="form-row submit">
11
        <input type="submit" class="submit altcol" value="SUBMIT" />
12
    </div>
13
      </form>
14
    {% else %}
15
    The password reset link was invalid
16
    {% endif %}
17
</div>
18
{% endblock %}