Implement auth as source of truth on server and protect routes. Integrate with portal

This commit is contained in:
Dominic Ferrando
2026-06-30 23:46:35 -04:00
parent 235c072421
commit f5fb64e467
9 changed files with 83 additions and 42 deletions
+30 -6
View File
@@ -1,20 +1,40 @@
<script lang="ts">
import "../app.css";
import type { PageProps } from "./$types";
import { goto } from "$app/navigation";
import { api } from "$lib/api";
let { form }: PageProps = $props();
let error = $state("");
let loading = $state(false);
async function handleSubmit(event: SubmitEvent) {
event.preventDefault();
const form = event.currentTarget as HTMLFormElement;
const password = new FormData(form).get("password")?.toString() ?? "";
loading = true;
const { status } = await api.auth.login.post({ password });
loading = false;
if (status === 401) {
error = "Invalid password";
return;
}
await goto("/");
}
</script>
<div class="min-h-screen flex items-center justify-center bg-base-200">
<div class="card bg-base-100 w-full max-w-sm shadow-xl">
<div class="card-body gap-4">
{#if form?.error}
{#if error}
<div role="alert" class="alert alert-error">
<span>{form.error}</span>
<span>{error}</span>
</div>
{/if}
<form method="POST" class="flex flex-col gap-4">
<form onsubmit={handleSubmit} class="flex flex-col gap-4">
<label class="floating-label">
<input
type="password"
@@ -26,7 +46,11 @@
<span>Password</span>
</label>
<button type="submit" class="btn btn-primary w-full">
<button
type="submit"
class="btn btn-primary w-full"
disabled={loading}
>
Sign in
</button>
</form>