mirror of
https://github.com/markbeep/AudioBookRequest.git
synced 2026-02-13 17:29:07 -06:00
17 lines
608 B
HTML
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 %}
|