1 {% extends "socialaccount/base.html" %}
4 {% load ajaxable_tags %}
6 {% block head_title %}{% trans "Signup" %}{% endblock %}
9 <h1>{% trans "Sign Up" %}</h1>
11 <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
12 {{site_name}}. As a final step, please complete the following form:{% endblocktrans %}</p>
14 <form class="signup cuteform" id="signup_form" method="post" action="{% url 'socialaccount_signup' %}">
17 {{ form.username|pretty_field }}
18 {{ form.email|pretty_field }}
19 {{ form.agree_newsletter|pretty_checkbox }}
21 {% if redirect_field_value %}
22 <input type="hidden" name="{{ redirect_field_name }}" value="{{ redirect_field_value }}" />
24 <p><span class="helptext">{{ form.data_processing }}</span></p>
25 <button type="submit">{% trans "Sign Up" %} »</button>