feat: add reset password page
This commit is contained in:
@@ -3,7 +3,7 @@ import Box from '@mui/material/Box';
|
||||
import Container from 'components/Container';
|
||||
import ForgotPasswordForm from 'components/ForgotPasswordForm/index.ee';
|
||||
|
||||
export default function Login(): React.ReactElement {
|
||||
export default function ForgotPassword(): React.ReactElement {
|
||||
return (
|
||||
<Box sx={{ display: 'flex', flex: 1, alignItems: 'center' }}>
|
||||
<Container maxWidth="sm">
|
||||
|
14
packages/web/src/pages/ResetPassword/index.ee.tsx
Normal file
14
packages/web/src/pages/ResetPassword/index.ee.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import * as React from 'react';
|
||||
import Box from '@mui/material/Box';
|
||||
import Container from 'components/Container';
|
||||
import ResetPasswordForm from 'components/ResetPasswordForm/index.ee';
|
||||
|
||||
export default function ResetPassword(): React.ReactElement {
|
||||
return (
|
||||
<Box sx={{ display: 'flex', flex: 1, alignItems: 'center' }}>
|
||||
<Container maxWidth="sm">
|
||||
<ResetPasswordForm />
|
||||
</Container>
|
||||
</Box>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user