Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / templates / registration / password_reset_form.html @ 900325e8

History | View | Annotate | Download (996 Bytes)

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

    
3
{% block page.title %}
4
Password reset
5
{% endblock %}
6

    
7
{% block body.left %}
8
<div class="section">
9
    <img class="pic" src="{{ IM_STATIC_URL }}images/break_glass.jpeg" />
10
</div>
11
{% endblock body.left %}
12
    
13
{% block body.right %}
14
     {% if "local" in im_modules %}
15
     
16
             
17
        <form action="{% url astakos.im.views.target.local.password_reset %}" method="post"
18
            class="login innerlabels">{% csrf_token %}
19
            <h2 class="formheader"><span>RESET PASSWORD</span></h2>
20
            <p>An email will be sent to the address you specify, containing a link that
21
will allow you to change your old password. <br><br></p>
22
            {% include "im/form_render.html" %}
23
            <div class="form-row submit">
24
                <input type="submit" class="submit altcol" value="SUBMIT" />
25
                <a href="{% url login %}" class="rt-link reset">CANCEL</a>
26
            </div>
27
        </form>
28
      {% endif %}
29
       
30
{% endblock %}