@page "/" @attribute [Authorize]

Welcome to ScadaLink

Central management console for the ScadaLink SCADA system.

Signed in as

@context.User.FindFirst("DisplayName")?.Value

@context.User.FindFirst("Username")?.Value

@{ var roles = context.User.FindAll("Role").Select(c => c.Value).ToList(); } @if (roles.Count > 0) {
Roles
@foreach (var role in roles) { @role }
}