{% extends "base-apply.html" %} {% load i18n wagtailcore_tags %} {% block title %}{% trans "Register" %}{% endblock %} {% block body_class %}bg-white{% endblock %} {% block content %}
{% csrf_token %} {% if redirect_url %} {% endif %}

Create your account

{% if form.non_field_errors %}
{{ form.non_field_errors.as_text }}
{% endif %} {% for field in form %} {%if field.id_for_label != 'id_is_superuser' and field.label != 'Groups' %} {% include "forms/includes/field.html" %} {%endif%} {% endfor %}

{% trans "Already have an account?" %} {% trans "Log in" %}

{% if settings.users.AuthSettings.register_extra_text %}
{{ settings.users.AuthSettings.register_extra_text|richtext}}
{% endif %}
{% endblock %}