Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (1.1 kB)

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

    
3

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

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

    
15
{% block body.right %}
16
    {% if "local" in im_modules %}
17
      <div class="form-stacked">
18
        <form action="{% url signup %}" method="post"
19
            class="innerlabels signup">{% csrf_token %}
20
          <h2><span>Provide an email address to complete the registration:</span></h2>
21
            <input type="hidden" name="next" value="{{ next }}">
22
            <input type="hidden" name="code" value="{{ code }}">
23
            <input type="hidden" name="provider" value={{ provider|default:"local" }}>
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 %}