{% extends "base.html" %} {% load crispy_forms_filters %} {% load allauth i18n static %} {% block title %} {{ _("Sign Up") }} {% endblock title %} {% block content %}
{% trans 'home' %} {% trans 'home' %}

{% trans "Sign Up" %}

{% trans "Create your account today" %}

{% if PASSKEY_SIGNUP_ENABLED %}
{% endif %} {% if SOCIALACCOUNT_ENABLED %} {% include "socialaccount/snippets/login.html" with page_layout="entrance" %} {% endif %} {% if not SOCIALACCOUNT_ONLY %}
{% csrf_token %} {{ redirect_field }}
{% if form.email.errors %}
{{ form.email.errors|striptags }}
{% endif %}
{% if form.password1.errors %}
{{ form.password1.errors|striptags }}
{% endif %}
{% if form.password2.errors %}
{{ form.password2.errors|striptags }}
{% endif %}
{% trans 'Already have an account?' %}{{ _("Sign In") }}
{% endif %}
{% endblock content %}