File

src/app/not-found/not-found.component.ts

Implements

OnInit

Metadata

selector app-not-found
styleUrls not-found.component.css
templateUrl ./not-found.component.html

Index

Methods

Constructor

constructor()

Methods

ngOnInit
ngOnInit()
Returns : void
import { Component, OnInit } from '@angular/core';

@Component({
  selector: 'app-not-found',
  templateUrl: './not-found.component.html',
  styleUrls: ['./not-found.component.css']
})
export class NotFoundComponent implements OnInit {

  constructor() { }

  ngOnInit() {
  }

}
<div id="pageNotFound" class="empty-page-ctn">

  <h2 class="status-header status-normal">404</h2>
  <h3 class="status-header status-normal">Component Not Found</h3>

  <div class="page-description">
    <p class="para-medium">The page you are looking for doesn't exist or an other error occurred.</p>
  </div>

  <a [routerLink]="['/start']">
    <button type="button" class="action-button">
      <p class="button-inside">Take Me Home</p>
    </button>
  </a>

</div>
Legend
Html element
Component
Html element with directive

results matching ""

    No results matching ""