Files
boilerplate/apps/frontend/src/app/features/errors/forbidden.page.ts
Bastian Wagner 543e8273a7 initial
2026-07-16 09:49:22 +02:00

18 lines
357 B
TypeScript

import { Component } from '@angular/core';
@Component({
standalone: true,
template: `<p class="state">Keine Berechtigung fuer diese Seite.</p>`,
styles: [
`
.state {
background: #fff;
border: 1px solid #d9dee7;
border-radius: 8px;
padding: 20px;
}
`,
],
})
export class ForbiddenPageComponent {}