NEW: Reset Password Page

This commit is contained in:
EvanLin3141
2025-02-06 15:28:25 +00:00
parent eb83fd297a
commit af71f63873
6 changed files with 169 additions and 8 deletions

View File

@@ -1,9 +1,15 @@
import React from 'react'
import React from 'react';
import PasswordResetForm from '../components/Auth/PasswordResetForm';
const ForgotPasswordPage: React.FC = () => {
const doNothing = (): void => {};
const ForgotPasswordPage = () => {
return (
<div>ForgotPasswordPage</div>
)
}
<div className="flex flex-col items-center justify-center h-screen">
<h1 className="text-2xl font-bold mb-4">Forgot Password</h1>
<PasswordResetForm onSubmit={doNothing} />
</div>
);
};
export default ForgotPasswordPage
export default ForgotPasswordPage;