Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (1.1 kB)

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

    
3

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

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

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