projects/cobbler-frontend/src/app/unauthorized/unauthorized.component.ts
| selector | cobbler-unauthorized |
| standalone | true |
| imports | |
| styleUrls | ./unauthorized.component.css |
| templateUrl | ./unauthorized.component.html |
No results matching.
constructor()
|
import { Component } from '@angular/core';
import { RouterLink } from '@angular/router';
@Component({
selector: 'cobbler-unauthorized',
templateUrl: './unauthorized.component.html',
styleUrls: ['./unauthorized.component.css'],
imports: [RouterLink],
})
export class UnauthorizedComponent {
constructor() {}
}
<div class="flex-center-all full">
<h1 i18n="@@page.unauthorized.title">You are not authorized to continue.</h1>
<h2 i18n="@@page.unauthorized.subtitle">Please Log in.</h2>
<a [routerLink]="['/login']" i18n="@@page.unauthorized.login-link">Login</a>
</div>
./unauthorized.component.css