mirror of
https://github.com/markbeep/AudioBookRequest.git
synced 2026-01-24 23:20:09 -06:00
14 lines
475 B
HTML
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 %}
|