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;