{% 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 %}