Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (1 kB)

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
{% comment %}{% include "im/services_description.html" %}{% endcomment %}
12
{% endblock body.left %}
13
    
14
{% block body.right %}
15
     {% if "local" in im_modules %}
16
     
17
             
18
        <form action="{% url django.contrib.auth.views.password_reset %}" method="post"
19
            class="login innerlabels">{% csrf_token %}
20
            <h2 class="formheader"><span>RESET PASSWORD</span></h2>
21
            <p>An email will be sent to the address you specify, containing a link that
22
will allow you to change your old password. <br><br></p>
23
            {% include "im/form_render.html" %}
24
            <div class="form-row submit">
25
                <input type="submit" class="submit altcol" value="SUBMIT" />
26
                <a href="{% url login %}" class="rt-link reset">CANCEL</a>
27
            </div>
28
        </form>
29
      {% endif %}
30
       
31
{% endblock %}