{% extends "base.html" %} {% load i18n %} {% block head_title %}Sign In{% endblock %} {% block content %}

Sign in to your account

Don't have an account? Sign up

{% if PASSKEY_LOGIN_ENABLED %}
Fastest & most secure
{% endif %} {% if SOCIALACCOUNT_ENABLED %} {% include "account/snippets/social_buttons.html" with process="login" verb="Continue" %} {% endif %}
or sign in with email
{% csrf_token %} {{ form.redirect_field_name }} {% for field in form %}
{{ field }} {% if field.errors %} {% for error in field.errors %}

{{ error }}

{% endfor %} {% endif %}
{% endfor %} {% if form.non_field_errors %}
{% for error in form.non_field_errors %}

{{ error }}

{% endfor %}
{% endif %}
{% endblock %} {% block extra_body %} {% if PASSKEY_LOGIN_ENABLED %} {% include "mfa/webauthn/snippets/login_script.html" with button_id="passkey_login" %} {% endif %} {% endblock %}