{% extends "account/base.html" %} {% load i18n %} {% block head_title %}{% trans "Signup" %}{% endblock %} {% block fullcontent %}

{% trans "Sign Up" %}

{% csrf_token %} {% for field in form.visible_fields %}
{% if 'E-mail' in field.label %} {% elif 'Password' in field.label %} {% else %} {% endif %} {{ field }}
{% endfor %} {% if form.errors %}
    {% for field, errors in form.errors.items %} {% for error in errors %}
  • {{ error|escape }}
  • {% endfor %} {% endfor %}
{% endif %} {% if redirect_field_value %} {% endif %}

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

{% endblock %}