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

{% trans "Create a new account" %}

{% blocktrans trimmed %} Already have an account? Then please sign in. {% 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 %}