d3f86e068f7acaf49a6762eaa969699c7f9c2d8c
[wolnelektury.git] / src / wolnelektury / templates / socialaccount / signup.html
1 {% extends "socialaccount/base.html" %}
2
3 {% load i18n %}
4
5 {% block head_title %}{% trans "Signup" %}{% endblock %}
6
7 {% block content %}
8     <h1>{% trans "Sign Up" %}</h1>
9
10 <p>{% blocktrans with provider_name=account.get_provider.name site_name=site.name %}You are about to use your {{provider_name}} account to login to
11 {{site_name}}. As a final step, please complete the following form:{% endblocktrans %}</p>
12
13 <form class="signup cuteform" id="signup_form" method="post" action="{% url 'socialaccount_signup' %}">
14   {% csrf_token %}
15   {{ form.as_p }}
16   {% if redirect_field_value %}
17   <input type="hidden" name="{{ redirect_field_name }}" value="{{ redirect_field_value }}" />
18   {% endif %}
19   <p><span class="helptext">{{ form.data_processing }}</span></p>
20   <button type="submit">{% trans "Sign Up" %} &raquo;</button>
21 </form>
22
23 {% endblock %}