Files
AudioBookRequest/templates/invalid_oidc.html
2025-03-14 16:25:26 +01:00

17 lines
608 B
HTML

{% extends "base.html" %} {% block head %}
<title>Invalid OIDC Settings</title>{% endblock %} {% block body %}
<div class="h-screen w-full flex items-center justify-center">
<div class="card flex flex-col gap-4 max-w-[20rem]">
<h1 class="text-2xl font-bold text-center">Invalid OIDC Settings</h1>
<p>The OIDC configuration is invalid!</p>
<p>Error: <span class="font-mono text-error">{{ error }}</span></p>
<p>
Click the button below to log in with a root admin account as a backup:
</p>
<a class="btn" href="/login?backup=1">Backup Login</a>
</div>
</div>
{% endblock %}