@using WeOnlineApp.Authorization @using WeOnlineApp.Views.Shared.Modals @model WeOnlineApp.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 { }