diff --git a/src/app/app.routes.server.ts b/src/app/app.routes.server.ts
index 69c62d8..5d09e56 100644
--- a/src/app/app.routes.server.ts
+++ b/src/app/app.routes.server.ts
@@ -9,6 +9,7 @@ export const serverRoutes: ServerRoute[] = [
{ path: ':appId/edit-carnet/:headerid', renderMode: RenderMode.Client },
{ path: ':appId/add-holder', renderMode: RenderMode.Client },
{ path: ':appId/edit-holder/:holderid', renderMode: RenderMode.Client },
+ { path: ':appId/terms', renderMode: RenderMode.Client },
{
path: '**',
renderMode: RenderMode.Prerender
diff --git a/src/app/app.routes.ts b/src/app/app.routes.ts
index 22a957b..0948519 100644
--- a/src/app/app.routes.ts
+++ b/src/app/app.routes.ts
@@ -17,6 +17,7 @@ export const routes: Routes = [
{ path: 'edit-carnet/:headerid', loadComponent: () => import('./carnet/edit/edit-carnet.component').then(m => m.EditCarnetComponent) },
{ path: 'add-holder', loadComponent: () => import('./holder/add/add-holder.component').then(m => m.AddHolderComponent) },
{ path: 'edit-holder/:holderid', loadComponent: () => import('./holder/edit/edit-holder.component').then(m => m.EditHolderComponent) },
+ { path: 'terms', loadComponent: () => import('./carnet/terms-conditions/terms-conditions.component').then(m => m.TermsConditionsComponent) },
{ path: '', redirectTo: 'home', pathMatch: 'full' }
],
canActivate: [AuthGuard, AppIdGuard]
diff --git a/src/app/carnet/add/add-carnet.component.html b/src/app/carnet/add/add-carnet.component.html
index b12ae88..2e6da70 100644
--- a/src/app/carnet/add/add-carnet.component.html
+++ b/src/app/carnet/add/add-carnet.component.html
@@ -16,7 +16,7 @@
[editable]="stepsCompleted.applicationDetail">