{% extends "base.html" %} {% load i18n %} {% load static %} {% block title %}{% trans "Sign Up" %} - ${project_name}{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

{% trans "Sign Up" %}

{% trans "Create your account" %}

{% csrf_token %} {% if form.non_field_errors %}
{% for error in form.non_field_errors %} {{ error }} {% endfor %}
{% endif %}
{% if form.username.errors %}

{{ form.username.errors.0 }}

{% endif %}
{% if form.email.errors %}

{{ form.email.errors.0 }}

{% endif %}
{% if form.password1.errors %}

{{ form.password1.errors.0 }}

{% endif %}
{% if form.password2.errors %}

{{ form.password2.errors.0 }}

{% endif %}
{% if redirect_field_value %} {% endif %}

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

{% endblock %}