{% extends "account/base_entrance.html" %}
{% load i18n %}
{% block title %}
{% trans "Create your account" %}
{% endblock title %}
{% block content %}
{% if SOCIALACCOUNT_ENABLED %}
{% include "socialaccount/snippets/login.html" with process="signup" %}
{% endif %}
{% if not SOCIALACCOUNT_ONLY %}
{{ redirect_field }}
{% endif %}
{% if PASSKEY_SIGNUP_ENABLED %}
{% endif %}
{% if login_url %}
{% blocktrans with login_url=login_url %}
Already have an account? Sign in.
{% endblocktrans %}
{% endif %}
{% endblock content %}