-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#24487 Access to the application is restricted to staff members only (#…
…1553) * only staff can access app * the error page * revert back the comment * update
- Loading branch information
Showing
4 changed files
with
39 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<template> | ||
<div class="text-center mt-20"> | ||
<h1 class="text-2xl font-bold mb-4">Access Denied</h1> | ||
<p class="text-lg">You are not authorized to access this application.</p> | ||
</div> | ||
</template> | ||
|
||
<script setup> | ||
definePageMeta({ | ||
layout: 'empty', // Use the custom blank layout | ||
}); | ||
</script> |