81 lines
2.5 KiB
TypeScript
81 lines
2.5 KiB
TypeScript
"use client";
|
|
|
|
import { useState } from "react";
|
|
import { signIn } from "next-auth/react";
|
|
import { zodResolver } from "@hookform/resolvers/zod";
|
|
import { useForm } from "react-hook-form";
|
|
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
|
|
import { FormControl, FormField, FormItem, FormLabel, FormMessage } from "@/components/ui/form";
|
|
import { Input } from "@/components/ui/input";
|
|
import AdminForm from "@/components/admin/admin-form";
|
|
import { loginSchema, type LoginInput } from "@/lib/validations/auth";
|
|
|
|
export default function LoginForm() {
|
|
const [serverError, setServerError] = useState<string | null>(null);
|
|
const form = useForm<LoginInput>({
|
|
resolver: zodResolver(loginSchema),
|
|
defaultValues: {
|
|
email: "",
|
|
password: "",
|
|
},
|
|
});
|
|
|
|
const onSubmit = async (values: LoginInput) => {
|
|
setServerError(null);
|
|
|
|
const result = await signIn("credentials", {
|
|
email: values.email,
|
|
password: values.password,
|
|
redirect: false,
|
|
callbackUrl: "/admin",
|
|
});
|
|
|
|
if (!result || result.error) {
|
|
setServerError("The email or password is incorrect.");
|
|
return;
|
|
}
|
|
|
|
window.location.assign(result.url ?? "/admin");
|
|
};
|
|
|
|
return (
|
|
<Card className="w-full max-w-md">
|
|
<CardHeader>
|
|
<CardTitle>Admin sign in</CardTitle>
|
|
<CardDescription>Use your admin credentials to continue.</CardDescription>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<AdminForm form={form} onSubmit={onSubmit} submitLabel="Sign in" submittingLabel="Signing in…" className="space-y-5">
|
|
<FormField
|
|
control={form.control}
|
|
name="email"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Email</FormLabel>
|
|
<FormControl>
|
|
<Input type="email" autoComplete="email" {...field} />
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<FormField
|
|
control={form.control}
|
|
name="password"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Password</FormLabel>
|
|
<FormControl>
|
|
<Input type="password" autoComplete="current-password" {...field} />
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
{serverError ? <p className="text-sm font-medium text-destructive">{serverError}</p> : null}
|
|
</AdminForm>
|
|
</CardContent>
|
|
</Card>
|
|
);
|
|
}
|