mirror of
https://github.com/markbeep/AudioBookRequest.git
synced 2026-01-23 14:29:02 -06:00
18 lines
655 B
HTML
18 lines
655 B
HTML
{% extends "base.html" %}
|
|
{% block head %}
|
|
<title>Invalid OIDC Settings</title>
|
|
{% endblock head %}
|
|
{% 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="{{ base_url }}/login?backup=1">Backup Login</a>
|
|
</div>
|
|
</div>
|
|
{% endblock body %}
|