@using WePlatform.Authorization @using WePlatform.Views.Shared.Modals @model WePlatform.Controllers.UserProfileViewModel @{ ViewBag.ActiveMenu = PermissionNames.Pages; ViewBag.Title = L("UserProfileTitle"); var userImagePath = string.IsNullOrEmpty(Model.ImagePath) ? "/Content/Image/user.png" : Model.ImagePath; var accountType = AbpSession.AccountType; } @section styles { }