WorkTracker/Components/Pages/Auth.razor
2026-02-18 17:11:13 +01:00

13 lines
219 B
Text

@page "/auth"
@using Microsoft.AspNetCore.Authorization
@attribute [Authorize]
<PageTitle>Auth</PageTitle>
<h1>You are authenticated</h1>
<AuthorizeView>
Hello @context.User.Identity?.Name!
</AuthorizeView>