feat(auth): auth pages added

This commit is contained in:
Dmitry Nehaychik 2017-08-02 17:27:19 +03:00
parent 210c6f2355
commit 75dd743244
6 changed files with 73 additions and 4 deletions

View file

@ -99,4 +99,20 @@ export const MENU_ITEMS: List<NbMenuItem> = List([{
title: 'Smart Table',
link: '/pages/tables/smart-table',
}]),
}, {
title: 'Auth',
icon: 'ion-unlocked',
children: List<NgaMenuItem>([{
title: 'Login',
link: '/auth/login',
}, {
title: 'Register',
link: '/auth/register',
}, {
title: 'Request Password',
link: '/auth/request-password',
}, {
title: 'Reset Password',
link: '/auth/reset-password',
}]),
}]);