Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / templates / im / auth / local_login_form.html @ 222305b7

History | View | Annotate | Download (817 Bytes)

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