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

{% trans "Create a new account" %}

{% if settings.AUTH_WORKFLOW %}

{% trans 'Please note that after registration, your account needs to be manually activated by an admin. This can take one or two days. You will receive an email when you can log in.'%}

{% endif %}

{% blocktrans %}Already have an account? Then please sign in.{% endblocktrans %}

{% csrf_token %} {% if redirect_field_value %} {% endif %} {% for field in form.visible_fields %} {% if settings.AUTH_TERMS_OF_USE and field.html_name == 'consent' %}
{% if field.errors %}

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

{% endif %} {% else %} {% include 'core/partials/form_field.html' with field=field %} {% endif %} {% endfor %}
{% if settings.AUTH_TERMS_OF_USE %} {% endif %} {% endblock %}