{% extends "account/base_entrance.html" %}{% load i18n allauth account %} {% block head_title %}{% trans "Sign In" %}{% endblock %} {% block content %}

{% trans "Sign In" %}

{% if not SOCIALACCOUNT_ONLY %}

{% blocktrans trimmed %}If you have not created an account yet, then please sign up first.{% endblocktrans %}

{% csrf_token %}{{ redirect_field }} {% include 'allauth/components/form.html' %}
{% endif %} {% if LOGIN_BY_CODE_ENABLED or PASSKEY_LOGIN_ENABLED %}
{% if PASSKEY_LOGIN_ENABLED %} {% endif %} {% if LOGIN_BY_CODE_ENABLED %} {% trans "Send me a sign-in code" %} {% endif %}
{% endif %} {% if SOCIALACCOUNT_ENABLED %} {% include "socialaccount/snippets/login.html" with page_layout="entrance" %} {% endif %}
{% endblock %} {% block extra_body %}{{ block.super }} {% if PASSKEY_LOGIN_ENABLED %} {% include "mfa/webauthn/snippets/login_script.html" with button_id="passkey_login" %} {% endif %} {% endblock %}