{% extends "base.html" %} {% load i18n %} {% block head_title %}{% trans "Signup" %}{% endblock %} {% block content %}

{% trans "Sign Up" %}

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

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

{% csrf_token %} {{ form.as_p }} {% if redirect_field_value %} {% endif %}
{% endif %} {% endblock %}