Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / templates / im / third_party_registration.html @ 3b258643

History | View | Annotate | Download (894 Bytes)

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

    
3

    
4
{% block page.title %}
5
Signup using {{ provider }}
6
{% endblock %}
7

    
8
{% block body.right %}
9
    {% if "local" in im_modules %}
10
      <div class="form-stacked">
11
        <form action="{% url signup %}" method="post"
12
            class="innerlabels signup">{% csrf_token %}
13
          <h2><span>SIGN UP</span></h2>
14
            <input type="hidden" name="next" value="{{ next }}">
15
            <input type="hidden" name="code" value="{{ code }}">
16
            <input type="hidden" name="provider" value={{ provider|default:"local" }}>
17
            <input type="hidden" name="third_party_token" value={{ third_party_token }}>
18

    
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
      </div>
25
    {% endif %}
26
{% endblock %}