add forgot-password ui (#273)

This commit is contained in:
Sahariar Alam Khandoker
2024-09-17 20:53:05 +06:00
committed by GitHub
parent f34812653e
commit e43ea66442
9 changed files with 183 additions and 2 deletions

View File

@ -0,0 +1,13 @@
import { Helmet } from "react-helmet-async";
import {ForgotPasswordForm} from "@/features/auth/components/forgot-password-form.tsx";
export default function ForgotPassword() {
return (
<>
<Helmet>
<title>Forgot Password</title>
</Helmet>
<ForgotPasswordForm />
</>
);
}