WIP feature/Register

This commit is contained in:
elforjani3
2020-04-22 22:12:02 +02:00
parent 4e0d3feebe
commit 225a1b741c
7 changed files with 257 additions and 4 deletions

View File

@@ -7,14 +7,21 @@ export default [
path: `${BASE_URL}/login`,
name: 'auth.login',
component: LazyLoader({
loader: () => import('containers/Authentication/Login')
loader: () => import('containers/Authentication/Login'),
}),
},
{
path: `${BASE_URL}/register`,
name: 'auth.register',
component: LazyLoader({
loader: () => import('containers/Authentication/Register'),
}),
},
{
path: `${BASE_URL}/reset_password`,
name: 'auth.reset_password',
component: LazyLoader({
loader: () => import('containers/Authentication/ResetPassword')
loader: () => import('containers/Authentication/ResetPassword'),
}),
}
];
},
];