{% extends "base.html" %} {% block title %} Login {% endblock title %} {% block main %}
{{ _(server_name) }}

{% if show_2fa %} {{ _("Two-Factor Authentication") }} {% else %} {{ _("Login") }} {% endif %}

{% if not show_2fa %}

{{ _("This is the administrator login page.") }} {% if media_server_url %} {{ _("Go to your media server instead") }} {% endif %}

{% endif %} {% if error %}

{{ error }}

{% endif %} {% if show_2fa %}

{{ _("Welcome back, {}!").format(username) }}

{{ _("Please authenticate with your passkey to complete login.") }}

{% endif %} {% if not show_2fa %}
{% if ldap_enabled %}
{% else %} {% endif %}
{% endif %} {% if show_2fa or has_passkeys %}
{% if show_2fa %} {% elif has_passkeys %}
{{ _("Or") }}
{% endif %}
{% endif %}
{% endblock main %}