mirror of
https://github.com/ForFarmTeam/ForFarm.git
synced 2025-12-19 14:04:08 +01:00
127 lines
4.3 KiB
TypeScript
127 lines
4.3 KiB
TypeScript
"use client";
|
|
|
|
import { zodResolver } from "@hookform/resolvers/zod";
|
|
import { useForm } from "react-hook-form";
|
|
|
|
import { signInSchema } from "@/schema/authSchema";
|
|
|
|
import { Input } from "@/components/ui/input";
|
|
import { Label } from "@/components/ui/label";
|
|
import { Checkbox } from "@/components/ui/checkbox";
|
|
import { Button } from "@/components/ui/button";
|
|
import ForgotPasswordModal from "./forgot-password-modal";
|
|
|
|
import Link from "next/link";
|
|
import Image from "next/image";
|
|
import { GoogleSigninButton } from "./google-oauth";
|
|
import { z } from "zod";
|
|
import { useContext, useState } from "react";
|
|
import { useRouter } from "next/navigation";
|
|
|
|
import { loginUser } from "@/api/authentication";
|
|
import { SessionContext } from "@/context/SessionContext";
|
|
|
|
export default function SigninPage() {
|
|
const [serverError, setServerError] = useState<string | null>(null);
|
|
const [isLoading, setIsLoading] = useState(false);
|
|
const router = useRouter();
|
|
const session = useContext(SessionContext);
|
|
|
|
const {
|
|
register,
|
|
handleSubmit,
|
|
formState: { errors },
|
|
} = useForm({
|
|
resolver: zodResolver(signInSchema),
|
|
defaultValues: {
|
|
email: "",
|
|
password: "",
|
|
},
|
|
});
|
|
|
|
const onSubmit = async (values: z.infer<typeof signInSchema>) => {
|
|
setServerError(null);
|
|
setIsLoading(true);
|
|
|
|
try {
|
|
const data = await loginUser(values.email, values.password);
|
|
|
|
if (!data) {
|
|
setServerError("An error occurred while logging in. Please try again.");
|
|
throw new Error("No data received from the server.");
|
|
}
|
|
session!.setToken(data.token);
|
|
session!.setUser(values.email);
|
|
|
|
router.push("/setup");
|
|
} catch (error: any) {
|
|
console.error("Error logging in:", error);
|
|
setServerError(error.message);
|
|
} finally {
|
|
setIsLoading(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div>
|
|
<div className="grid grid-cols-[0.7fr_1.2fr] h-screen overflow-hidden">
|
|
<div className="flex bg-[url('/plant-background.jpeg')] bg-cover bg-center"></div>
|
|
|
|
<div className="flex justify-center items-center">
|
|
<div className="container px-[25%]">
|
|
<div className="flex flex-col justify-center items-center">
|
|
<span>
|
|
<Image src="/forfarm-logo.png" alt="Forfarm" width={150} height={150} />
|
|
</span>
|
|
<h1 className="text-3xl font-semibold">Welcome back.</h1>
|
|
<div className="flex whitespace-nowrap gap-x-2 mt-2">
|
|
<span className="text-md">New to Forfarm?</span>
|
|
<span className="text-green-600">
|
|
<Link href="signup" className="underline">
|
|
Sign up
|
|
</Link>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Sign in form */}
|
|
<form onSubmit={handleSubmit(onSubmit)} className="flex flex-col mt-4">
|
|
<div>
|
|
<Label htmlFor="email">Email</Label>
|
|
<Input type="email" id="email" placeholder="Email" {...register("email")} />
|
|
{errors.email && <p className="text-red-600 text-sm">{errors.email.message}</p>}
|
|
</div>
|
|
<div className="mt-5">
|
|
<Label htmlFor="password">Password</Label>
|
|
<Input type="password" id="password" placeholder="Password" {...register("password")} />
|
|
{errors.password && <p className="text-red-600 text-sm">{errors.password.message}</p>}
|
|
</div>
|
|
|
|
<Button type="submit" className="mt-5 rounded-full" disabled={isLoading}>
|
|
{isLoading ? "Logging in..." : "Log in"}
|
|
</Button>
|
|
</form>
|
|
|
|
<div id="signin-footer" className="flex justify-between mt-5">
|
|
<div className="flex items-center space-x-2">
|
|
<Checkbox id="terms" />
|
|
<label htmlFor="terms" className="text-sm font-medium leading-none">
|
|
Remember me
|
|
</label>
|
|
</div>
|
|
<ForgotPasswordModal />
|
|
</div>
|
|
|
|
<div className="my-5">
|
|
<p className="text-sm">Or log in with</p>
|
|
<div className="flex flex-col gap-x-5 mt-3">
|
|
<GoogleSigninButton />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|