diff --git a/src/app/core/about.component.ts b/src/app/core/about.component.ts index af2e5072..7e399e0e 100644 --- a/src/app/core/about.component.ts +++ b/src/app/core/about.component.ts @@ -4,13 +4,9 @@ import { APP_CONFIG } from './tokens'; @Component({ template: ` -
-
-
-

{{ appTitle() }}

-

v{{ version() }}

-
-
+
+

{{ appTitle() }}

+

v{{ version() }}

`, standalone: true, diff --git a/src/app/core/errors/access.component.ts b/src/app/core/errors/access.component.ts index 717c3da4..fc8de4a3 100644 --- a/src/app/core/errors/access.component.ts +++ b/src/app/core/errors/access.component.ts @@ -3,14 +3,10 @@ import { Router } from '@angular/router'; @Component({ template: ` -
-
-
-

{{ status }}

-

{{ message }}

-

Once your account is updated, go back home and try again.

-
-
+
+

{{ status }}

+

{{ message }}

+

Once your account is updated, go back home and try again.

`, standalone: true, diff --git a/src/app/core/errors/error.component.ts b/src/app/core/errors/error.component.ts index 101add0e..f7af327a 100644 --- a/src/app/core/errors/error.component.ts +++ b/src/app/core/errors/error.component.ts @@ -8,15 +8,11 @@ import { ErrorState } from './error-state.model'; standalone: true, imports: [HasRoleDirective], template: ` -
-
-
-

{{ state.status }} {{ state.statusText }}

-

{{ state.url }}

-

{{ state.message }}

-

{{ state.stack }}

-
-
+
+

{{ state.status }} {{ state.statusText }}

+

{{ state.url }}

+

{{ state.message }}

+

{{ state.stack }}

` }) diff --git a/src/app/core/unauthorized.component.ts b/src/app/core/unauthorized.component.ts index c3fab698..a97a745c 100644 --- a/src/app/core/unauthorized.component.ts +++ b/src/app/core/unauthorized.component.ts @@ -3,18 +3,14 @@ import { ChangeDetectionStrategy, Component } from '@angular/core'; @Component({ changeDetection: ChangeDetectionStrategy.OnPush, template: ` -
-
-
-

-

-
-
+
+

+

`, standalone: true }) export class UnauthorizedComponent { - title = `ಠ_ಠ

Not Authorized`; - message = `You are not authorized to view this page. If you got here by accident, please go back home and try again.`; + title = 'Not Authorized'; + message = `You are not authorized to view this page.
If you got here by accident, please go back home and try again.`; }