From af8b953d006152337ccc2279a167c82187c251e7 Mon Sep 17 00:00:00 2001 From: Eric Lay Date: Wed, 11 Mar 2026 08:38:16 -0500 Subject: [PATCH] Add src/components/UserNotRegisteredError.jsx --- src/components/UserNotRegisteredError.jsx | 31 +++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 src/components/UserNotRegisteredError.jsx diff --git a/src/components/UserNotRegisteredError.jsx b/src/components/UserNotRegisteredError.jsx new file mode 100644 index 0000000..ede5274 --- /dev/null +++ b/src/components/UserNotRegisteredError.jsx @@ -0,0 +1,31 @@ +import React from 'react'; + +const UserNotRegisteredError = () => { + return ( +
+
+
+
+ + + +
+

Access Restricted

+

+ You are not registered to use this application. Please contact the app administrator to request access. +

+
+

If you believe this is an error, you can:

+
    +
  • Verify you are logged in with the correct account
  • +
  • Contact the app administrator for access
  • +
  • Try logging out and back in again
  • +
+
+
+
+
+ ); +}; + +export default UserNotRegisteredError;