Files
AudioBookRequest/templates/redirect.html
2025-04-23 23:16:09 +02:00

14 lines
475 B
HTML

{% extends "base.html" %}
{% block head %}
<title>Redirecting...</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">Redirecting...</h1>
<script>window.location.href = "{{ redirect_uri }}";</script>
<a class="btn" href="{{ redirect_uri }}">Redirect now</a>
</div>
</div>
{% endblock body %}