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

{% trans "Sign Up" %}

{% if user.is_authenticated %} {% include "account/snippets/already_logged_in.html" %} {% else %}

{% trans "Already have an account?" %} {% trans "Sign in" %}.

{% csrf_token %}
{{ form|as_uni_form }} {% if redirect_field_value %} {% endif %}
{% endif %} {% endblock %}