NEW: Reset Password Page
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user