27 lines
No EOL
868 B
Text
27 lines
No EOL
868 B
Text
@using Microsoft.AspNetCore.Components.Authorization
|
|
|
|
<AntContainer />
|
|
|
|
<Router AppAssembly="@typeof(Program).Assembly">
|
|
<Found Context="routeData">
|
|
<AuthorizeRouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)">
|
|
<NotAuthorized>
|
|
@if (context.User.Identity.IsAuthenticated == false)
|
|
{
|
|
<RedirectToLogin />
|
|
}
|
|
else
|
|
{
|
|
<audio autoplay>
|
|
<source src="~/static/access-denied.mp3" type="audio/mp3" />
|
|
</audio>
|
|
}
|
|
</NotAuthorized>
|
|
</AuthorizeRouteView>
|
|
</Found>
|
|
<NotFound>
|
|
<LayoutView Layout="@typeof(MainLayout)">
|
|
<p>Sorry, there's nothing at this address.</p>
|
|
</LayoutView>
|
|
</NotFound>
|
|
</Router> |