68 lines
3.4 KiB
JavaScript
68 lines
3.4 KiB
JavaScript
import InputError from '@/components/InputError';
|
|
import PrimaryButton from '@/components/PrimaryButton';
|
|
import TextInput from '@/components/TextInput';
|
|
import GuestLayout from '@/Layouts/GuestLayout';
|
|
import { Head, useForm } from '@inertiajs/react';
|
|
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card.jsx";
|
|
import { Label } from "@/components/ui/label.jsx";
|
|
|
|
export default function ResetPassword({ token, email }) {
|
|
const { data, setData, post, processing, errors, reset } = useForm({
|
|
token: token,
|
|
email: email,
|
|
password: '',
|
|
password_confirmation: '',
|
|
});
|
|
|
|
const submit = (e) => {
|
|
e.preventDefault();
|
|
|
|
post(route('password.store'), {
|
|
onFinish: () => reset('password', 'password_confirmation'),
|
|
});
|
|
};
|
|
|
|
return (
|
|
<GuestLayout>
|
|
<Head title="Reset Password" />
|
|
<div className="flex flex-col gap-6">
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle className="text-2xl">Reset Password</CardTitle>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<form onSubmit={ submit }>
|
|
<div className="flex flex-col gap-6">
|
|
<div className="grid gap-2">
|
|
<Label htmlFor="email">E-mail Address</Label>
|
|
<TextInput type="email" id="email" placeholder="me@yumj.in" value={ data.email }
|
|
onChange={ (e) => setData('email', e.target.value) } required />
|
|
<InputError message={ errors.email } className="mt-2" />
|
|
</div>
|
|
<div className="grid gap-2">
|
|
<div className="flex items-center">
|
|
<Label htmlFor="password">Password</Label>
|
|
</div>
|
|
<TextInput id="password" type="password" name="password" value={ data.password }
|
|
onChange={ (e) => setData('password', e.target.value) } />
|
|
<InputError message={ errors.password } className="mt-2" />
|
|
</div>
|
|
<div className="grid gap-2">
|
|
<div className="flex items-center">
|
|
<Label htmlFor="password_confirmation">Password Confirmation</Label>
|
|
</div>
|
|
<TextInput id="password_confirmation" type="password" name="password_confirmation" value={ data.password_confirmation }
|
|
onChange={ (e) => setData('password_confirmation', e.target.value) } />
|
|
<InputError message={ errors.password_confirmation } className="mt-2" />
|
|
</div>
|
|
<PrimaryButton type="submit" disabled={ processing }
|
|
className="w-full">Reset Password</PrimaryButton>
|
|
</div>
|
|
</form>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
</GuestLayout>
|
|
);
|
|
}
|