diff --git a/src/app/unauthorized/unauthorized.component.scss b/src/app/unauthorized/unauthorized.component.scss
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/src/app/unauthorized/unauthorized.component.ts b/src/app/unauthorized/unauthorized.component.ts
new file mode 100644
index 0000000000..280a1ae947
--- /dev/null
+++ b/src/app/unauthorized/unauthorized.component.ts
@@ -0,0 +1,32 @@
+import { Component, OnInit } from '@angular/core';
+import { AuthService } from '../core/auth/auth.service';
+import { ServerResponseService } from '../core/services/server-response.service';
+
+/**
+ * This component representing the `Unauthorized` DSpace page.
+ */
+@Component({
+ selector: 'ds-unauthorized',
+ templateUrl: './unauthorized.component.html',
+ styleUrls: ['./unauthorized.component.scss']
+})
+export class UnauthorizedComponent implements OnInit {
+
+ /**
+ * Initialize instance variables
+ *
+ * @param {AuthService} authservice
+ * @param {ServerResponseService} responseService
+ */
+ constructor(private authservice: AuthService, private responseService: ServerResponseService) {
+ this.responseService.setUnauthorized();
+ }
+
+ /**
+ * Remove redirect url from the state
+ */
+ ngOnInit(): void {
+ this.authservice.clearRedirectUrl();
+ }
+
+}
diff --git a/src/assets/i18n/en.json5 b/src/assets/i18n/en.json5
index 8af13739d5..f0dd9bb600 100644
--- a/src/assets/i18n/en.json5
+++ b/src/assets/i18n/en.json5
@@ -1,5 +1,13 @@
{
+ "401.help": "You're not authorized to access this page. You can use the button below to get back to the home page.",
+
+ "401.link.home-page": "Take me to the home page",
+
+ "401.unauthorized": "unauthorized",
+
+
+
"404.help": "We can't find the page you're looking for. The page may have been moved or deleted. You can use the button below to get back to the home page. ",
"404.link.home-page": "Take me to the home page",