{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "Sign Up" %} - {{ project_name }}{% endblock %} {% block content %} {% include "components/hero_banner.html" with title=_("Sign Up") subtitle=_("Create your account") color="primary" %}
{% csrf_token %} {% if form.non_field_errors %}
{% for error in form.non_field_errors %} {{ error }} {% endfor %}
{% endif %}
{{ form.email }}
{% if form.email.errors %}

{{ form.email.errors.0 }}

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

{{ form.password1.errors.0 }}

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

{{ form.password1.help_text }}

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

{{ form.password2.errors.0 }}

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

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

{% endblock %}