Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / templates / im / auth / local_login_form.html @ 081070a5

History | View | Annotate | Download (769 Bytes)

1
<form action="{% url astakos.im.target.local.login %}" method="post"class="login innerlabels">{% csrf_token %}
2
    <h2>LOGIN</h2>
3
    {% with login_form as form %}
4
        {% include "im/form_render.html" %}
5
    {% endwith %}
6
    <input type="hidden" name="next" value="{{ next }}">
7
    
8
    {% if key %}
9
        <input type="hidden" name="key" value="{{key}}">
10
    {% else %}
11
        {% if request.GET.key %}
12
            <input type="hidden" name="key" value="{{request.GET.key}}">
13
        {% endif %}
14
    {% endif %}
15
    
16
    <div class="form-row submit clearfix">
17
        <input type="submit" class="submit altcol" value="SUBMIT" />
18
        <a class="extra-link" href="{% url django.contrib.auth.views.password_reset %}">Forgot your password?</a>
19
    </div>
20
</form>