Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / templates / im / signup.html @ 0a63687f

History | View | Annotate | Download (1.2 kB)

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

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

    
7
{% block body.left %}
8
    <img class="pic" src="{{ IM_STATIC_URL }}images/pictures/accounts_3.png" />
9
{% comment %}{% include "im/services_description.html" %}{% endcomment %}
10
{% endblock body.left %}
11

    
12
{% block body.right %}
13
    {% if "local" in im_modules %}
14
      <div class="form-stacked">
15
        <form action="{% url signup %}" method="post"
16
            class="innerlabels signup">{% csrf_token %}
17
          <h2><span>SIGN UP</span></h2>
18
            <input type="hidden" name="next" value="{{ next }}">
19
            <input type="hidden" name="code" value="{{ code }}">
20
            <input type="hidden" name="provider" value={{ provider|default:"local" }}>
21
            {% if third_party_token %}
22
            <input type="hidden" name="third_party_token" value={{ third_party_token }}>
23
            {% endif %}
24
            {% with signup_form as form %}
25
            {% include "im/form_render.html" %}
26
            {% endwith %}
27
            <div class="form-row submit">
28
                <input type="submit" class="submit altcol" value="SUBMIT" />
29
            </div>
30
        </form>
31
      </div>
32
    {% endif %}
33
{% endblock %}