@model ChangePasswordModel @{ Layout = "_ColumnsTwo"; //title NopHtml.AddTitleParts(T("PageTitle.Account").Text); //page class NopHtml.AppendPageCssClassParts("html-account-page"); NopHtml.AppendPageCssClassParts("html-change-password-page"); var returnUrl = Context.Request.Query["returnUrl"]; } @section left { @await Component.InvokeAsync(typeof(CustomerNavigationViewComponent), new { selectedTabId = CustomerNavigationEnum.ChangePassword }) }

@T("Account.MyAccount") - @T("Account.ChangePassword")

@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CustomerChangePasswordTop, additionalData = Model })
@if (Model.PasswordExpired) {

@T("Account.ChangePassword.PasswordIsExpired")

} @if (Model.PasswordMustBeChanged) {

@T("Account.ChangePassword.MustBeChanged")

}
@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CustomerChangePasswordBottom, additionalData = Model })