{% extends 'paxalia/auth_base.html' %} {% load i18n %} {% block title %}{% trans "Create your account" %} ยท {{ brand_name }}{% endblock %} {% block content %}

{% trans "Create your account" %}

{% trans "Create a Django account for the host application." %}

{% csrf_token %} {% if form.non_field_errors %}{% endif %} {% for field in form %}
{{ field }} {% if 'password' in field.name %}{% endif %}
{% if field.help_text %}
{{ field.help_text|safe }}
{% endif %} {% for error in field.errors %}
{{ error }}
{% endfor %}
{% endfor %}

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

{% endblock %}