@page @using Volo.CmsKit.Pages @model IndexModel @using Microsoft.AspNetCore.Mvc.Localization @using Volo.CmsKit.Localization @using Volo.Abp.Users @inject IHtmlLocalizer L @inject ICurrentUser CurrentUser Welcome @if (!CurrentUser.IsAuthenticated) {
} else { Claims
@Html.Raw(CurrentUser.GetAllClaims().Select(c => $"{c.Type}={c.Value}").OrderBy(x => x).JoinAsString("
")) }

abp.io