{% 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 %} Username {% if form.username.errors %} {{ form.username.errors.0 }} {% endif %} Email {% if form.email.errors %} {{ form.email.errors.0 }} {% endif %} {{ form.password1.label }} {% if form.password1.errors %} {{ form.password1.errors.0 }} {% endif %} {{ form.password2.label }} {% if form.password2.errors %} {{ form.password2.errors.0 }} {% endif %} {% if redirect_field_value %} {% endif %} {% trans "Sign Up" %} {% trans "Already have an account?" %} {% trans "Sign in" %} {% endblock %}
{{ form.username.errors.0 }}
{{ form.email.errors.0 }}
{{ form.password1.errors.0 }}
{{ form.password2.errors.0 }}
{% trans "Already have an account?" %} {% trans "Sign in" %}