This commit is contained in:
Malai Raja
2023-11-27 17:09:27 +05:30
commit 7113ac0681
223 changed files with 56261 additions and 0 deletions

62
src/routes/LoginRoutes.js Normal file
View File

@@ -0,0 +1,62 @@
import { lazy } from 'react';
// project import
import GuestGuard from 'utils/route-guard/GuestGuard';
import CommonLayout from 'layout/CommonLayout';
import Loadable from 'components/Loadable';
// render - login
const AuthLogin = Loadable(lazy(() => import('pages/auth/login')));
const AuthRegister = Loadable(lazy(() => import('pages/auth/register')));
const AuthForgotPassword = Loadable(lazy(() => import('pages/auth/forgot-password')));
const AuthCheckMail = Loadable(lazy(() => import('pages/auth/check-mail')));
const AuthResetPassword = Loadable(lazy(() => import('pages/auth/reset-password')));
const AuthCodeVerification = Loadable(lazy(() => import('pages/auth/code-verification')));
// ==============================|| AUTH ROUTING ||============================== //
const LoginRoutes = {
path: '/',
children: [
{
path: '/',
element: (
<GuestGuard>
<CommonLayout />
</GuestGuard>
),
children: [
{
path: '/',
element: <AuthLogin />
},
{
path: 'login',
element: <AuthLogin />
},
{
path: 'register',
element: <AuthRegister />
},
{
path: 'forgot-password',
element: <AuthForgotPassword />
},
{
path: 'check-mail',
element: <AuthCheckMail />
},
{
path: 'reset-password',
element: <AuthResetPassword />
},
{
path: 'code-verification',
element: <AuthCodeVerification />
}
]
}
]
};
export default LoginRoutes;