{% extends 'core/page.html' %} {% load i18n %} {% block page %}

{% trans "Create a new account" %}

{% blocktrans trimmed 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 %} {% for field in form.visible_fields %} {% if field.html_name != 'consent' %} {% include 'core/bootstrap_form_field.html' with field=field %} {% endif %} {% endfor %} {% if settings.ACCOUNT_TERMS_OF_USE %} {% with field=form.consent %}
{% if field.errors %}

{% trans 'You need to agree to the terms of use to proceed.' %}

{% endif %} {% endwith %} {% endif %}
{% if settings.ACCOUNT_TERMS_OF_USE %} {% include 'account/signup_modal_terms_of_use.html' %} {% endif %} {% endblock %}