initial
This commit is contained in:
17
apps/frontend/src/app/features/errors/forbidden.page.ts
Normal file
17
apps/frontend/src/app/features/errors/forbidden.page.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
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 {}
|
||||
Reference in New Issue
Block a user