{% extends 'layouts/registration-2.html' %} {% load i18n %} {% block head_title %}{% trans "Signup" %}{% endblock %} {% block content %}

{% trans "Sign Up" %}

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

{% csrf_token %} {% for field in form %}
{% endfor %} {% if form.errors %} {% for field in form %} {% for error in field.errors %}
{{ error|escape }}
{% endfor %} {% endfor %} {% for error in form.non_field_errors %}
{{ error|escape }}
{% endfor %} {% endif %} {% if redirect_field_value %} {% endif %}
{% endblock %}