112 lines
4.1 KiB
TypeScript
112 lines
4.1 KiB
TypeScript
import { FormEventHandler, useEffect } from "react";
|
|
import GuestLayout from "@/Layouts/GuestLayout";
|
|
import { Head, Link, useForm } from "@inertiajs/react";
|
|
import {
|
|
Card,
|
|
CardContent,
|
|
CardDescription,
|
|
CardHeader,
|
|
CardTitle,
|
|
} from "@/Components/ui/card";
|
|
import { Label } from "@/Components/ui/label";
|
|
import { Input } from "@/Components/ui/input";
|
|
import { Button } from "@/Components/ui/button";
|
|
import { InputError } from "@/Components/ui/InputError";
|
|
|
|
export default function Login({
|
|
status,
|
|
canResetPassword,
|
|
}: {
|
|
status?: string;
|
|
canResetPassword: boolean;
|
|
}) {
|
|
const { data, setData, post, processing, errors, reset } = useForm({
|
|
email: "",
|
|
password: "",
|
|
remember: false,
|
|
});
|
|
|
|
useEffect(() => {
|
|
return () => {
|
|
reset("password");
|
|
};
|
|
}, []);
|
|
|
|
const submit: FormEventHandler = (e) => {
|
|
e.preventDefault();
|
|
|
|
post(route("login"));
|
|
};
|
|
|
|
return (
|
|
<GuestLayout>
|
|
<Head title="Log in" />
|
|
|
|
<form onSubmit={submit}>
|
|
<Card className="mx-auto max-w-sm">
|
|
<CardHeader>
|
|
<CardTitle className="text-2xl">Login</CardTitle>
|
|
<CardDescription>
|
|
Enter your email below to login to your account
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent>
|
|
{status && (
|
|
<div className="mb-4 font-medium text-sm text-green-600">
|
|
{status}
|
|
</div>
|
|
)}
|
|
|
|
<div className="grid gap-4">
|
|
<div className="grid gap-2">
|
|
<Label htmlFor="email">Email</Label>
|
|
<Input
|
|
id="email"
|
|
type="email"
|
|
placeholder="m@example.com"
|
|
value={data.email}
|
|
onChange={(e) =>
|
|
setData("email", e.target.value)
|
|
}
|
|
required
|
|
/>
|
|
<InputError message={errors.email} />
|
|
</div>
|
|
<div className="grid gap-2">
|
|
<div className="flex items-center">
|
|
<Label htmlFor="password">Password</Label>
|
|
<Link
|
|
href={route("password.request")}
|
|
className="ml-auto inline-block text-sm underline"
|
|
>
|
|
Forgot your password?
|
|
</Link>
|
|
</div>
|
|
<Input
|
|
id="password"
|
|
type="password"
|
|
value={data.password}
|
|
onChange={(e) =>
|
|
setData("password", e.target.value)
|
|
}
|
|
required
|
|
/>
|
|
<InputError message={errors.password} />
|
|
</div>
|
|
<Button type="submit" className="w-full">
|
|
Login
|
|
</Button>
|
|
</div>
|
|
<div className="mt-4 text-center text-sm">
|
|
Don't have an account?{" "}
|
|
<Link href="/register" className="underline">
|
|
Sign up
|
|
</Link>
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
</form>
|
|
</GuestLayout>
|
|
);
|
|
}
|