1 {% extends "socialaccount/base.html" %}
 
   5 {% block head_title %}{% trans "Signup" %}{% endblock %}
 
   8     <h1>{% trans "Sign Up" %}</h1>
 
  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>
 
  13 <form class="signup cuteform" id="signup_form" method="post" action="{% url 'socialaccount_signup' %}">
 
  16   {% if redirect_field_value %}
 
  17   <input type="hidden" name="{{ redirect_field_name }}" value="{{ redirect_field_value }}" />
 
  19   <p><span class="helptext">{{ form.data_processing }}</span></p>
 
  20   <button type="submit">{% trans "Sign Up" %} »</button>