import { useState } from "react" import { Link } from "react-router-dom" import { ArrowLeft } from "lucide-react" import successSrc from "../../assets/success.svg" import { BrandLogo } from "../../components/brand/BrandLogo" import { Button } from "../../components/ui/button" import { Input } from "../../components/ui/input" export function ForgotPasswordPage() { const [email, setEmail] = useState("") const [submitted, setSubmitted] = useState(false) const handleSubmit = (e: React.FormEvent) => { e.preventDefault() // Handle forgot password logic here console.log("Forgot password:", { email }) setSubmitted(true) } return (
Manage your academy, track student progress, and streamline operations — all from one powerful dashboard.
We've sent a password reset link to{" "} {email}. Please check your inbox and follow the instructions.
Account Recovery
No worries — enter your email and we'll send you a reset link.
© {new Date().getFullYear()} Yimaru Academy · All rights reserved