Как реализовать авторизацию в Blazor? Настроил App.razor, но во всех страницах пишет Authorizing... А мне надо отобразить остальные страницы как обычно, но только при доступе к админке требовать авторизацию
App.razor:
<Router AppAssembly="@typeof(Program).Assembly">
<Found Context="routeData">
<AuthorizeRouteView RouteData="@routeData" DefaultLayout="@typeof(SiteLayout)" > </AuthorizeRouteView>
</Found>
<NotFound>
<CascadingAuthenticationState>
<LayoutView Layout="@typeof(SiteLayout)">
<p>Sorry, there's nothing at this address.</p>
</LayoutView>
</CascadingAuthenticationState>
</NotFound>
</Router>