{% extends "registration/base.html" %} {% block bodyclass %}register-page{% endblock %} {% block style %} {{ block.super }} {% endblock %} {% block login_body_content %} {% if uid %} {% endif %}
{% if form.errors.uid %} {% translate_errors form.uid.errors %} {% endif %}

{% translate_text "fields with * is required" capfirst %}

{% csrf_token %}
{% block base_registration_fields %} {% block auth_key_field %}
{{ form.username.errors }} {{ form.username }}
{% endblock %} {% block auth_email %}
{{ form.email.errors }} {{ form.email }}
{% endblock %} {% block registration_password_fields %}
{{ form.password1.errors }} {{ form.password1 }}
{{ form.password2.errors }} {{ form.password2 }}
{% if form.agreement %}
{{ form.agreement.errors }} {{ form.agreement }}
{% endif %} {% if form.consent_to_processing %}
{{ form.consent_to_processing.errors }} {{ form.consent_to_processing }}
{% endif %} {% endblock %} {% endblock %} {% block additional_registration_fields %} {% endblock %}
{% endblock %} {% block after_content %} {% block registration_confirmation_script %} {% endblock %} {% endblock %}