You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
2.5 KiB
TypeScript
68 lines
2.5 KiB
TypeScript
'use client';
|
|
|
|
import { useActionState } from 'react';
|
|
import { authenticate } from '@/app/lib/actions';
|
|
import { Button } from '@/components/ui/button';
|
|
import { Input } from '@/components/ui/input';
|
|
import { Label } from '@/components/ui/label';
|
|
import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from '@/components/ui/card';
|
|
import { AlertCircle } from 'lucide-react';
|
|
import { useFormStatus } from 'react-dom';
|
|
|
|
export default function LoginForm() {
|
|
const [errorMessage, dispatch] = useActionState(authenticate, undefined);
|
|
|
|
return (
|
|
<Card className="w-full max-w-sm">
|
|
<CardHeader>
|
|
<CardTitle className="text-2xl">Login</CardTitle>
|
|
<CardDescription>
|
|
Enter your email below to login to your account.
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<form action={dispatch}>
|
|
<CardContent className="grid gap-4">
|
|
<div className="grid gap-2">
|
|
<Label htmlFor="email">Email</Label>
|
|
<Input
|
|
id="email"
|
|
type="email"
|
|
name="email"
|
|
placeholder="m@example.com"
|
|
required
|
|
/>
|
|
</div>
|
|
<div className="grid gap-2">
|
|
<Label htmlFor="password">Password</Label>
|
|
<Input
|
|
id="password"
|
|
name="password"
|
|
type="password"
|
|
required
|
|
/>
|
|
</div>
|
|
{errorMessage && (
|
|
<div className="flex h-8 items-end space-x-1" aria-live="polite" aria-atomic="true">
|
|
<AlertCircle className="h-5 w-5 text-red-500" />
|
|
<p className="text-sm text-red-500">{errorMessage}</p>
|
|
</div>
|
|
)}
|
|
</CardContent>
|
|
<CardFooter>
|
|
<LoginButton />
|
|
</CardFooter>
|
|
</form>
|
|
</Card>
|
|
);
|
|
}
|
|
|
|
function LoginButton() {
|
|
const { pending } = useFormStatus();
|
|
|
|
return (
|
|
<Button className="w-full" aria-disabled={pending} disabled={pending}>
|
|
{pending ? "Signing in..." : "Sign in"}
|
|
</Button>
|
|
);
|
|
}
|