src/app/layouts/pages/page-not-found/page-not-found.component.ts
selector | crm-page-not-found |
styleUrls | page-not-found.component.scss |
templateUrl | ./page-not-found.component.html |
import {Component} from "@angular/core";
@Component({
selector: 'crm-page-not-found',
templateUrl: './page-not-found.component.html',
styleUrls: ['./page-not-found.component.scss']
})
export class PageNotFoundComponent {
}
<div class="app flex-row align-items-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-6">
<div class="clearfix">
<h1 class="float-left display-3 mr-2">404</h1>
<h4 class="pt-1">Oops! You're lost.</h4>
<p class="text-muted">The page you are looking for was not found.</p>
</div>
</div>
</div>
</div>
</div>