mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-01 05:56:16 +00:00
101 lines
3.3 KiB
TypeScript
101 lines
3.3 KiB
TypeScript
import { Head, useForm, usePage } from '@inertiajs/react';
|
|
import { LoaderCircle } from 'lucide-react';
|
|
import { FormEventHandler } from 'react';
|
|
|
|
import InputError from '@/components/ui/input-error';
|
|
import TextLink from '@/components/text-link';
|
|
import { Button } from '@/components/ui/button';
|
|
import { Checkbox } from '@/components/ui/checkbox';
|
|
import { Input } from '@/components/ui/input';
|
|
import { Label } from '@/components/ui/label';
|
|
import AuthLayout from '@/layouts/auth/layout';
|
|
import { SharedData } from '@/types';
|
|
|
|
type LoginForm = {
|
|
email: string;
|
|
password: string;
|
|
remember: boolean;
|
|
};
|
|
|
|
interface LoginProps {
|
|
status?: string;
|
|
canResetPassword: boolean;
|
|
}
|
|
|
|
export default function Login({ status, canResetPassword }: LoginProps) {
|
|
const page = usePage<SharedData>();
|
|
|
|
const { data, setData, post, processing, errors, reset } = useForm<Required<LoginForm>>({
|
|
email: page.props.demo ? 'demo@vitodeploy.com' : '',
|
|
password: page.props.demo ? 'password' : '',
|
|
remember: false,
|
|
});
|
|
|
|
const submit: FormEventHandler = (e) => {
|
|
e.preventDefault();
|
|
post(route('login.store'), {
|
|
onFinish: () => reset('password'),
|
|
});
|
|
};
|
|
|
|
return (
|
|
<AuthLayout title="Log in to your account" description="Enter your email and password below to log in">
|
|
<Head title="Log in" />
|
|
|
|
<form className="flex flex-col gap-6" onSubmit={submit}>
|
|
<div className="grid gap-6">
|
|
<div className="grid gap-2">
|
|
<Label htmlFor="email">Email address</Label>
|
|
<Input
|
|
id="email"
|
|
type="email"
|
|
required
|
|
autoFocus
|
|
tabIndex={1}
|
|
autoComplete="email"
|
|
value={data.email}
|
|
onChange={(e) => setData('email', e.target.value)}
|
|
placeholder="email@example.com"
|
|
/>
|
|
<InputError message={errors.email} />
|
|
</div>
|
|
|
|
<div className="grid gap-2">
|
|
<div className="flex items-center">
|
|
<Label htmlFor="password">Password</Label>
|
|
{canResetPassword && (
|
|
<TextLink href={route('password.request')} className="ml-auto text-sm" tabIndex={5}>
|
|
Forgot password?
|
|
</TextLink>
|
|
)}
|
|
</div>
|
|
<Input
|
|
id="password"
|
|
type="password"
|
|
required
|
|
tabIndex={2}
|
|
autoComplete="current-password"
|
|
value={data.password}
|
|
onChange={(e) => setData('password', e.target.value)}
|
|
placeholder="Password"
|
|
/>
|
|
<InputError message={errors.password} />
|
|
</div>
|
|
|
|
<div className="flex items-center space-x-3">
|
|
<Checkbox id="remember" name="remember" checked={data.remember} onClick={() => setData('remember', !data.remember)} tabIndex={3} />
|
|
<Label htmlFor="remember">Remember me</Label>
|
|
</div>
|
|
|
|
<Button type="submit" className="mt-4 w-full" tabIndex={4} disabled={processing}>
|
|
{processing && <LoaderCircle className="animate-spin" />}
|
|
Log in
|
|
</Button>
|
|
</div>
|
|
</form>
|
|
|
|
{status && <div className="mb-4 text-center text-sm font-medium text-green-600">{status}</div>}
|
|
</AuthLayout>
|
|
);
|
|
}
|