Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (812 Bytes)

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

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

    
7
{% block body %}
8
<div class="section">
9
    <img class="pic" src="{{ IM_STATIC_URL }}images/pictures/login_pic.png" />
10
</div>
11
{% comment %}{% include "im/services_description.html" %}{% endcomment %}
12
{% endblock body %}
13
    
14
{% block body.right %}
15
     {% if "local" in im_modules %}
16
        <form action="{% url django.contrib.auth.views.password_reset %}" method="post"
17
            class="login innerlabels">{% csrf_token %}
18
            <h2 class="formheader"><span>RESET PASSWORD</span></h2>
19
            {% include "im/form_render.html" %}
20
            <div class="form-row submit">
21
                <input type="submit" class="submit altcol" value="SUBMIT" />
22
            </div>
23
        </form>
24
      {% endif %}
25
{% endblock %}