From 6f605960e5ed2a86f78646460b32fa226ef12e21 Mon Sep 17 00:00:00 2001 From: Nikolaos Laskaris Date: Mon, 13 Nov 2017 19:13:49 +0200 Subject: [PATCH] -- --- dmp-frontend/src/app/app-routing.module.ts | 6 ++-- dmp-frontend/src/app/app.component.html | 29 ++++++++++++++----- dmp-frontend/src/app/app.component.ts | 9 ++++++ .../src/app/form/dynamic-form.component.css | 17 +++++++---- .../src/app/form/dynamic-form.component.ts | 3 +- .../main-sign-in/main-sign-in.component.ts | 4 +-- 6 files changed, 49 insertions(+), 19 deletions(-) diff --git a/dmp-frontend/src/app/app-routing.module.ts b/dmp-frontend/src/app/app-routing.module.ts index 884023531..8e57a602c 100644 --- a/dmp-frontend/src/app/app-routing.module.ts +++ b/dmp-frontend/src/app/app-routing.module.ts @@ -14,10 +14,10 @@ import { MainSignInComponent } from './login/main-sign-in/main-sign-in.component const appRoutes: Routes = [ { path: 'dynamic-form', component: DynamicFormComponent, canActivate: [AuthGuard] }, { path: 'login', component: MainSignInComponent}, - //{ path: 'projects', component: ProjectsComponent}, - //{ path: 'dmps', component: DmpComponent}, + { path: 'projects', component: ProjectsComponent}, + { path: 'dmps', component: DmpComponent}, { path: 'workspace', component: UserWorkspaceComponent}, - //{ path: '', component: EmptyComponent}, + { path: 'welcome', component: EmptyComponent}, { path: '', redirectTo: '/login', pathMatch: 'full' }, { path: '**', component: PageNotFoundComponent }, /* diff --git a/dmp-frontend/src/app/app.component.html b/dmp-frontend/src/app/app.component.html index ca4ae1a85..5455350f2 100644 --- a/dmp-frontend/src/app/app.component.html +++ b/dmp-frontend/src/app/app.component.html @@ -1,17 +1,32 @@