Added missing pagenotfound files

This commit is contained in:
Lotte Hofstede
2017-01-12 15:26:03 +01:00
parent 82a379df3c
commit 4ddaf450ae
3 changed files with 32 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
<div class="page-not-found">
<h1>404</h1>
<h2><small>{{"404.page-not-found" | translate}}</small></h2>
<br>
<p>{{"404.help" | translate}}</p>
<br>
<p class="text-center">
<a routerLink="/home" class="btn btn-primary">{{"404.link.home-page" | translate}}</a>
</p>
</div>

View File

@@ -0,0 +1 @@
@import '../../styles/variables.scss';

View File

@@ -0,0 +1,21 @@
import { Component } from '@angular/core';
@Component({
selector: 'ds-pagenotfound',
styleUrls: ['./pagenotfound.component.css'],
templateUrl: './pagenotfound.component.html'
})
export class PageNotFoundComponent {
data: any = {};
constructor() {
this.universalInit();
}
universalInit() {
}
}