Files
Entkube/src/EntKube.Web.Client/Pages/Auth.razor
Nils Blomgren 343de77810
Some checks failed
Build and Deploy / Deploy to server (push) Has been skipped
Build and Deploy / Build and push image (push) Failing after 6m0s
blazor.web.js issues
2026-06-08 16:48:36 +02:00

15 lines
249 B
Plaintext

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