Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (806 Bytes)

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

    
3
{% block page.title %}Signup complete{% endblock %}
4

    
5
{% block body %}
6
    <div class='header'>
7
        <div class="mainlogo">
8
            <h1>Signup complete</h1>
9
        </div>
10
    </div>
11

    
12
<div class="section">
13
    <form action="{% url signup %}" method="post" class="login innerlabels">{% csrf_token %}
14
                {% with thirdparty_signup_form as form %}
15
                {% include "im/form_render.html" %}
16
                {% endwith %}
17
                <input type="hidden" name="next" value="{{ next }}">
18
                <input type="hidden" name="provider" value="{{ provider }}">
19
                <div class="form-row submit">
20
                    <input type="submit" class="submit altcol" value="SUBMIT" />
21
                </div>
22
        </form>
23
{% endblock body %}