feat: implement forgot password functionality with validation and UI components

This commit is contained in:
arraysid
2025-05-28 00:57:23 +07:00
parent 60f0e98476
commit 1c1c66fc0f
9 changed files with 197 additions and 0 deletions
@@ -0,0 +1,23 @@
import { LogoSimple } from '@/app/_components/logo';
import { Metadata } from 'next';
import { ForgotPasswordForm } from './_components/forgot-password-form';
export const metadata: Metadata = {
title: 'IMPHNEN - Signin',
};
export default function Page() {
return (
<>
<div className="flex flex-col items-center gap-4">
<LogoSimple />
<p className="text-muted-foreground text-center text-sm sm:text-base">
Reset password akunmu
</p>
<ForgotPasswordForm />
</div>
</>
);
}