{% extends "account/base_entrance.html" %}
{% load i18n socialaccount %}
{% block title %}
{% trans "Sign in to your account" %}
{% endblock title %}
{% block content %}
{% get_providers as socialaccount_providers %}
{% if SOCIALACCOUNT_ENABLED and socialaccount_providers %}
{% include "socialaccount/snippets/provider_list.html" with process="login" %}
{% if not SOCIALACCOUNT_ONLY %}
{% endif %}
{% endif %}
{% if not SOCIALACCOUNT_ONLY %}
{{ redirect_field }}
{% endif %}
{% if not SOCIALACCOUNT_ONLY and PASSKEY_LOGIN_ENABLED or not SOCIALACCOUNT_ONLY and LOGIN_BY_CODE_ENABLED %}
{% if PASSKEY_LOGIN_ENABLED %}
{% endif %}
{% if LOGIN_BY_CODE_ENABLED %}
{% endif %}
{% endif %}
{% if signup_url %}
{% blocktrans %}Don't have an account? Sign up.{% endblocktrans %}
{% endif %}
{% endblock content %}
{% block extra_js %}
{{ block.super }}
{% if not SOCIALACCOUNT_ONLY and PASSKEY_LOGIN_ENABLED %}
{% include "mfa/webauthn/snippets/login_script.html" with button_id="passkey_login" %}
{% endif %}
{% endblock extra_js %}