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 (
{!isSent ? (

Forgot password

No worries, we'll send you reset instructions

setEmail(e.target.value)} placeholder="Enter your email" className="w-full pl-12 pr-4 py-4 bg-slate-50 border border-slate-200 rounded-2xl text-sm focus:bg-white focus:ring-2 focus:ring-[#185FA5]/10 focus:border-[#185FA5] outline-none transition-all" required />
) : (

Check your email

We've sent a password reset link to
{email}

Back to login
)}
); }