itmpwk.ac.id/resources/js/pages/auth/forgot-password.tsx
Yoga Pangestu 79261bd0e0
Some checks failed
tests / ci (pull_request) Has been cancelled
feat: update terminology from 'password' to 'kata sandi' across various components and pages
2026-08-26 00:57:49 +07:00

69 lines
2.6 KiB
TypeScript

import { Form, Head } from '@inertiajs/react';
import { LoaderCircle } from 'lucide-react';
import InputError from '@/components/input-error';
import TextLink from '@/components/text-link';
import { Button } from '@/components/ui/button';
import { Input } from '@/components/ui/input';
import { Label } from '@/components/ui/label';
import { login } from '@/routes';
import { email } from '@/routes/password';
export default function ForgotPassword({ status }: { status?: string }) {
return (
<>
<Head title="Lupa Kata Sandi" />
{status && (
<div className="mb-4 text-center text-sm font-medium text-green-600">
{status}
</div>
)}
<div className="space-y-6">
<Form {...email.form()}>
{({ processing, errors }) => (
<>
<div className="grid gap-2">
<Label htmlFor="email">Alamat email</Label>
<Input
id="email"
type="email"
name="email"
autoComplete="off"
autoFocus
placeholder="email@contoh.com"
/>
<InputError message={errors.email} />
</div>
<div className="my-6 flex items-center justify-start">
<Button
className="w-full"
disabled={processing}
data-test="email-password-reset-link-button"
>
{processing && (
<LoaderCircle className="h-4 w-4 animate-spin" />
)}
Kirim link reset kata sandi
</Button>
</div>
</>
)}
</Form>
<div className="space-x-1 text-center text-sm text-muted-foreground">
<span>Atau kembali ke</span>
<TextLink href={login()}>masuk</TextLink>
</div>
</div>
</>
);
}
ForgotPassword.layout = {
title: 'Lupa Kata Sandi',
description: 'Masukkan email Anda untuk menerima link reset kata sandi',
};