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.
38 lines
1.0 KiB
38 lines
1.0 KiB
@page "/"
|
|
@using System.Globalization
|
|
|
|
<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>
|
|
|
|
<PageTitle>Global View</PageTitle>
|
|
|
|
<h1>Global View</h1>
|
|
|
|
This is the global statistics of our website.
|
|
<div style="align-content:flex-start">
|
|
<div style=" display:block; margin:50px;">
|
|
<p>Number of views of the website</p>
|
|
<MudChart ChartType="ChartType.Line" ChartSeries="@Series" @bind-SelectedIndex="IndexChart" XAxisLabels="@XAxisLabels" Width="100%" Height="350px" ChartOptions="@Options" />
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</Authorized>
|
|
<Authorizing>
|
|
<h1>Loading ...</h1>
|
|
</Authorizing>
|
|
<NotAuthorized>
|
|
<h1>Authentication Failure!</h1>
|
|
<p>You're not signed in.</p>
|
|
</NotAuthorized>
|
|
</AuthorizeView> |