{% load i18n %} {% trans "Register" %} | Corre
{% if form.errors %}
    {% if form.non_field_errors %}
  • {{ form.non_field_errors|striptags }}
  • {% endif %} {% for field in form %} {% if field.errors %}
  • {{ field.label }}: {{ field.errors|striptags }}
  • {% endif %}{% endfor %}
{% endif %}
{% csrf_token %}

{{ form.username.help_text }}

{{ form.password2.help_text}}