{% load i18n static unfold feature_flags socialaccount %} {% flag_enabled 'LOCAL_LOGIN' as LOCAL_LOGIN %} {% flag_enabled 'PASSKEY_LOGIN' as PASSKEY_LOGIN %} {% if form.errors or form.non_field_errors %}
{% include "unfold/helpers/messages/errornote.html" with errors=form.errors %} {% include "unfold/helpers/messages/error.html" with errors=form.non_field_errors %} {% if user.is_authenticated %} {% blocktranslate trimmed asvar message %} You are authenticated as {{ username }}, but are not authorized to access this page. Would you like to login to a different account? {% endblocktranslate %} {% include "unfold/helpers/messages/error.html" with error=message %} {% endif %}
{% endif %} {% block login_before %} {% endblock %}
{% if LOCAL_LOGIN %}
{% csrf_token %} {% include "unfold/helpers/field.html" with field=form.username %} {% include "unfold/helpers/field.html" with field=form.password %}
{% component "unfold/components/button.html" with submit=1 variant="primary" class="submit-row w-full" %} {% translate 'Log in' %} arrow_forward {% endcomponent %}
{% endif %}
{% if PASSKEY_LOGIN %} ----
{% csrf_token %}
{% endif %}
{% block login_after %} {% endblock %}