You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
807 B
40 lines
807 B
@page "/"
|
|
@using System.Globalization
|
|
|
|
@* <PageTitle>Global View</PageTitle>
|
|
|
|
<h1>Global View</h1>
|
|
|
|
This is the global statistics of our website.
|
|
|
|
Actual language:
|
|
<p>
|
|
<b>CurrentCulture</b>: @CultureInfo.CurrentCulture
|
|
</p>
|
|
|
|
<SurveyPrompt Title="How is Blazor working for you?" /> *@
|
|
|
|
<AuthorizeView>
|
|
<Authorized>
|
|
<h1>Hello @context.User.Identity.Name !!</h1>
|
|
|
|
<p>Welcome to Blazor Learner.</p>
|
|
|
|
<ul>
|
|
@foreach (var claim in context.User.Claims)
|
|
{
|
|
<li>@claim.Type: @claim.Value</li>
|
|
}
|
|
</ul>
|
|
|
|
</Authorized>
|
|
<Authorizing>
|
|
<h1>Loading ...</h1>
|
|
</Authorizing>
|
|
<NotAuthorized>
|
|
<h1>Authentication Failure!</h1>
|
|
<p>You're not signed in.</p>
|
|
</NotAuthorized>
|
|
</AuthorizeView>
|
|
|