Files
LetterFeed/frontend/src/app/login/page.tsx
2025-07-19 10:41:47 +02:00

84 lines
2.5 KiB
TypeScript

"use client"
import type React from "react"
import { useState } from "react"
import { Button } from "@/components/ui/button"
import { Card, CardContent } from "@/components/ui/card"
import { Input } from "@/components/ui/input"
import { Label } from "@/components/ui/label"
import Image from "next/image"
import { useAuth } from "@/hooks/useAuth"
import { toast } from "sonner"
export default function LoginPage() {
const [username, setUsername] = useState("")
const [password, setPassword] = useState("")
const { login } = useAuth()
const handleLogin = async (e: React.FormEvent) => {
e.preventDefault()
if (!username || !password) {
toast.error("Please fill in all fields")
return
}
try {
await login(username, password)
} catch {
// The error is already toasted by the API layer,
}
}
return (
<div className="min-h-screen bg-background flex items-center justify-center">
<div className="max-w-md w-full space-y-8 p-8">
<div className="text-center">
<div className="flex justify-center mb-4">
<Image
src="/logo.png"
alt="LetterFeed Logo"
width={48}
height={48}
className="rounded-lg"
/>
</div>
<h2 className="text-3xl font-bold text-foreground">LetterFeed</h2>
<p className="mt-2 text-muted-foreground">Sign in to your account</p>
</div>
<Card>
<CardContent className="p-6">
<form onSubmit={handleLogin} className="space-y-4">
<div className="space-y-2">
<Label htmlFor="username">Username</Label>
<Input
id="username"
type="text"
value={username}
onChange={(e) => setUsername(e.target.value)}
placeholder="Enter your username"
/>
</div>
<div className="space-y-2">
<Label htmlFor="password">Password</Label>
<Input
id="password"
type="password"
value={password}
onChange={(e) => setPassword(e.target.value)}
placeholder="Enter your password"
/>
</div>
<Button type="submit" className="w-full">
Sign In
</Button>
</form>
</CardContent>
</Card>
</div>
</div>
)
}