legalgo-FE-reactrouter/app/layouts/news/form-forgot-password.tsx

33 lines
889 B
TypeScript
Raw Normal View History

2025-02-22 15:15:04 +07:00
import { Button } from '~/components/ui/button'
export const FormForgotPassword = () => {
return (
2025-02-22 15:15:04 +07:00
<div className="flex flex-col items-center justify-center">
<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 */}
<Button className="mt-5 w-full rounded-md py-2">
2025-02-22 15:15:04 +07:00
Reset Password
</Button>
</form>
</div>
</div>
)
}