Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / templates / im / signup.html @ 8f5a3a06

History | View | Annotate | Download (1.5 kB)

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

    
3
{% block signin_class %}hidden{% endblock %}
4

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

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

    
16
{% block body.right %}
17
    {% if "local" in im_modules %}
18
      <div class="form-stacked">
19
        <form action="{% url astakos.im.views.signup %}" method="post"
20
            class="innerlabels signup">{% csrf_token %}
21
          <h2><span>SIGN UP</span></h2>
22
            <input type="hidden" name="next" value="{{ next }}">
23
            <input type="hidden" name="code" value="{{ code }}">
24
            <input type="hidden" name="provider" value="local">
25
            {% with local_signup_form as form %}
26
            {% include "im/form_render.html" %}
27
            {% endwith %}
28
            <div class="form-row submit">
29
                <input type="submit" class="submit altcol" value="SUBMIT" />
30
            </div>
31
        </form>
32
      </div>
33
    {% endif %}
34
    <div class="extralogin">
35
        {% for o in im_modules %}
36
        <div>
37
      {% if o != 'local' %}
38
      SIGNUP using 
39
      <a href="/im/login/{{ o }}?{% ifnotequal next "" %}next={{ next|urlencode }}&{% endifnotequal %}&code={{ code|urlencode }}" 
40
          alt="{{ o|title }}">{{ o }}</a>
41
      {% endif %}
42
      </div>
43
      {% endfor %}
44
  </div>
45
{% endblock %}