legalgo-FE-reactrouter/app/components/ui/form-forgot-password.tsx

38 lines
1.1 KiB
TypeScript
Raw Normal View History

2025-02-22 15:15:04 +07:00
import HeaderModal from '~/components/popup/header-modal'
import { Button } from '~/components/ui/button'
export default function FormForgotPassword() {
return (
2025-02-22 15:15:04 +07:00
<div className="flex flex-col items-center justify-center">
<HeaderModal>
<p>Selamat Datang, silakan masukkan akun Anda untuk melanjutkan!</p>
</HeaderModal>
2025-02-22 15:15:04 +07:00
<div className="w-full max-w-md">
<form>
{/* Input Email / No Telepon */}
<div className="mb-4">
<label
htmlFor="email"
className="mb-1 block text-gray-700"
>
Email/No. Telepon
</label>
<input
type="text"
placeholder="Contoh: legal@legalgo.id"
className="focus:inheriten w-full rounded-md border border-[#DFDFDF] p-2"
required
/>
</div>
{/* Tombol Masuk */}
2025-02-22 15:15:04 +07:00
<Button className="mt-5 w-full rounded-md bg-[#2E2F7C] py-2 text-white transition hover:bg-blue-800">
Reset Password
</Button>
</form>
</div>
</div>
)
}