Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / templates / im / auth / local_login_prompt.html @ 3c6a178b

History | View | Annotate | Download (911 Bytes)

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