{% 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 %}{{ form.non_field_errors }}{% endif %} {% for field in form %} {{ field.label }} {{ field }} {% if 'password' in field.name %}{% trans "Show" %}{% endif %} {% if field.help_text %}{{ field.help_text|safe }}{% endif %} {% for error in field.errors %}{{ error }}{% endfor %} {% endfor %} {% trans "Create account" %} {% trans "Already have an account?" %} {% trans "Log in" %} {% endblock %}
{% trans "Create a Django account for the host application." %}
{% trans "Already have an account?" %} {% trans "Log in" %}