+
{{ 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.`;
}