feat: add forgot password page

This commit is contained in:
Ali BARIN
2023-03-03 14:38:54 +00:00
parent cc05bc7db8
commit 4792853eb6
9 changed files with 122 additions and 6 deletions

View File

@@ -0,0 +1,14 @@
import * as React from 'react';
import Box from '@mui/material/Box';
import Container from 'components/Container';
import ForgotPasswordForm from 'components/ForgotPasswordForm/index.ee';
export default function Login(): React.ReactElement {
return (
<Box sx={{ display: 'flex', flex: 1, alignItems: 'center' }}>
<Container maxWidth="sm">
<ForgotPasswordForm />
</Container>
</Box>
);
}