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

{{ _("Sign Up") }}

{% trans 'Already have an account?' %} {{ _("Sign in") }}.

{% if not SOCIALACCOUNT_ONLY %}
{% csrf_token %} {{ form|crispy }} {{ redirect_field }}
{% endif %} {% if PASSKEY_SIGNUP_ENABLED %}
{% endif %} {% if SOCIALACCOUNT_ENABLED %}
{% include "socialaccount/snippets/login.html" with page_layout="entrance" %} {% endif %}
{% endblock content %}