mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
WIP feature/Register
This commit is contained in:
@@ -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'),
|
||||
}),
|
||||
}
|
||||
];
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user