foamking/app/intern/login/page.tsx
mikl0s efe19f0cda refactor: consolidate protected routes under /intern/*
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-22 21:53:20 +00:00

123 lines
3.6 KiB
TypeScript

"use client"
import { useState } from "react"
import { useRouter } from "next/navigation"
import Image from "next/image"
import Link from "next/link"
import { Button } from "@/components/ui/button"
import { Input } from "@/components/ui/input"
import { Label } from "@/components/ui/label"
import { Loader2 } from "lucide-react"
export default function LoginPage() {
const router = useRouter()
const [email, setEmail] = useState("")
const [password, setPassword] = useState("")
const [error, setError] = useState("")
const [loading, setLoading] = useState(false)
async function handleSubmit(e: React.FormEvent) {
e.preventDefault()
setError("")
setLoading(true)
try {
const res = await fetch("/api/auth/login", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ email, password }),
})
const data = await res.json()
if (!res.ok) {
setError(data.error || "Login fejlede")
return
}
router.push("/intern")
router.refresh()
} catch {
setError("Der opstod en fejl. Prøv igen.")
} finally {
setLoading(false)
}
}
return (
<main className="flex min-h-screen items-center justify-center bg-muted/30 p-4">
<div className="w-full max-w-sm">
<div className="rounded-2xl bg-white p-8 shadow-lg">
<div className="mb-8 text-center">
<Link href="/" className="inline-block">
<Image
src="/foam-king-logo.png"
alt="Foam King"
width={140}
height={56}
className="mx-auto h-12 w-auto"
/>
</Link>
<h1 className="mt-4 text-xl font-semibold">Log ind</h1>
<p className="mt-1 text-sm text-muted-foreground">Adgang til dashboard</p>
</div>
<form onSubmit={handleSubmit} className="space-y-4">
<div className="space-y-2">
<Label htmlFor="email">Email</Label>
<Input
id="email"
type="email"
value={email}
onChange={(e) => setEmail(e.target.value)}
placeholder="din@email.dk"
required
autoComplete="email"
/>
</div>
<div className="space-y-2">
<Label htmlFor="password">Adgangskode</Label>
<Input
id="password"
type="password"
value={password}
onChange={(e) => setPassword(e.target.value)}
placeholder="••••••••"
required
autoComplete="current-password"
/>
</div>
{error && (
<div className="rounded-lg border border-red-200 bg-red-50 p-3 text-sm text-red-600">
{error}
</div>
)}
<Button
type="submit"
className="h-11 w-full bg-secondary hover:bg-secondary/90"
disabled={loading}
>
{loading ? (
<>
<Loader2 className="mr-2 h-4 w-4 animate-spin" />
Logger ind...
</>
) : (
"Log ind"
)}
</Button>
</form>
</div>
<p className="mt-6 text-center text-sm text-muted-foreground">
<Link href="/" className="hover:underline">
Tilbage til forsiden
</Link>
</p>
</div>
</main>
)
}