Added login page ang nav menu

This commit is contained in:
Giuseppe Digilio
2018-02-01 17:13:08 +01:00
parent befe08b571
commit 2309c1be3b
15 changed files with 158 additions and 3 deletions

View File

@@ -12,6 +12,7 @@ import { PageNotFoundComponent } from './pagenotfound/pagenotfound.component';
{ path: 'collections', loadChildren: './+collection-page/collection-page.module#CollectionPageModule' },
{ path: 'items', loadChildren: './+item-page/item-page.module#ItemPageModule' },
{ path: 'search', loadChildren: './+search-page/search-page.module#SearchPageModule' },
{ path: 'login', loadChildren: './+login-page/login-page.module#LoginPageModule' },
{ path: '**', pathMatch: 'full', component: PageNotFoundComponent },
])
],