@page "/account/access-denied" @using Indotalent.Features.Root @using MudBlazor @layout MainLayout Access Denied - Insufficient Permissions
Access Denied Sorry, you do not have the required permissions to access this module.
This area is restricted to authorized administrative personnel only.
Error Code: AGS_AUTH_INSUFFICIENT_PERMISSIONS Verification failed for the current security context.
Back to Home Logout & Switch Account
@code { [Inject] private NavigationManager Nav { get; set; } = default!; private void GoHome() => Nav.NavigateTo("/"); private void Logout() => Nav.NavigateTo("/account/logout"); }