16 lines
558 B
Plaintext
16 lines
558 B
Plaintext
<Router AppAssembly="typeof(App).Assembly"
|
|
AdditionalAssemblies="new[] { typeof(AuthBlocksWeb._Imports).Assembly }">
|
|
<Found Context="routeData">
|
|
<AuthorizeRouteView RouteData="routeData">
|
|
<NotAuthorized>
|
|
<RedirectToLogin />
|
|
</NotAuthorized>
|
|
</AuthorizeRouteView>
|
|
<FocusOnNavigate RouteData="routeData" Selector="h1" />
|
|
</Found>
|
|
<NotFound>
|
|
<PageTitle>Not found</PageTitle>
|
|
<p role="alert">Sorry, there's nothing at this address.</p>
|
|
</NotFound>
|
|
</Router>
|