{% extends "base.html" %} {% load crispy_forms_filters %} {% load i18n %} {% block head_title %}{% trans "Signup" %}{% endblock %} {% block content %}

{% trans "Sign Up" %}

{% blocktrans with provider_name=account.get_provider.name site_name=site.name %}You are about to use your {{ provider_name }} account to login to {{ site_name }}. As a final step, please complete the following form:{% endblocktrans %}

{% csrf_token %} {% if redirect_field_value %} {% endif %}
{{ form.username |as_crispy_field }}
{{ form.email |as_crispy_field }}
{{ form.email2 |as_crispy_field }}
{% if TERMS_URL != '' or PRIVACY_URL != '' %}
{{ form.terms |as_crispy_field }} {% trans 'I accept the follwoing' %} {% if TERMS_URL != '' %} {% trans 'Terms and Conditions' %} {% endif %} {% if TERMS_URL != '' or PRIVACY_URL != '' %} {% trans 'and' %} {% endif %} {% if PRIVACY_URL != '' %} {% trans 'Privacy Policy' %} {% endif %}
{% endif %} {% if CAPTCHA_ENABLED %}
{{ form.captcha.errors }} {{ form.captcha }}
{% endif %}
{% endblock %}