mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
13 lines
218 B
Plaintext
13 lines
218 B
Plaintext
@page "/auth"
|
|
|
|
@using Microsoft.AspNetCore.Authorization
|
|
|
|
@attribute [Authorize]
|
|
|
|
<PageTitle>Auth</PageTitle>
|
|
|
|
<h1>You are authenticated</h1>
|
|
|
|
<AuthorizeView>
|
|
Hello @context.User.Identity?.Name!
|
|
</AuthorizeView> |