import React, { useState } from 'react'; import { Head, Link } from '@inertiajs/react'; import { ArrowLeft, Loader2, Mail, ArrowRight, CheckCircle2 } from 'lucide-react'; export default function EmployerForgotPassword() { const [email, setEmail] = useState(''); const [isSent, setIsSent] = useState(false); const [processing, setProcessing] = useState(false); const handleSubmit = (e) => { e.preventDefault(); setProcessing(true); setTimeout(() => { setIsSent(true); setProcessing(false); }, 1500); }; return (
No worries, we'll send you reset instructions
We've sent a password reset link to
{email}