Add authentication #17

Manually merged
Webmaster merged 225 commits from auth into main 2025-03-08 10:37:06 +00:00
Showing only changes of commit e35adfaa5b - Show all commits

View file

@ -4,14 +4,14 @@ const title = "Authenticating...";
---
<main class="min-h-screen flex items-center justify-center">
<div id="content" class="text-center">
<p class="text-2xl font-medium">Redirecting to dashboard...</p>
<div class="mt-4">
<div class="loading loading-spinner loading-lg"></div>
<div id="content" class="text-center">
<p class="text-2xl font-medium">Redirecting to dashboard...</p>
<div class="mt-4">
<div class="loading loading-spinner loading-lg"></div>
</div>
</div>
</div>
</main>
<script>
import { RedirectHandler } from "../components/auth/RedirectHandler";
new RedirectHandler();
import { RedirectHandler } from "../scripts/auth/RedirectHandler";
new RedirectHandler();
</script>