@model ChangePasswordModel @using SmartStore.Web.Models.Customer; @{ Layout = "~/Views/Shared/_Root.cshtml"; //title Html.AddTitleParts(T("PageTitle.Account").Text); } @using (Html.BeginForm()) { @Html.AntiForgeryToken()

@T("Account.ChangePassword")

@Html.ValidationSummary(true)
@if (!String.IsNullOrEmpty(Model.Result)) {
@Model.Result
}
@Html.LabelFor(model => model.OldPassword) @Html.EditorFor(model => model.OldPassword) @Html.ValidationMessageFor(model => model.OldPassword)
@Html.LabelFor(model => model.NewPassword) @Html.EditorFor(model => model.NewPassword) @Html.ValidationMessageFor(model => model.NewPassword)
@Html.LabelFor(model => model.ConfirmNewPassword) @Html.EditorFor(model => model.ConfirmNewPassword) @Html.ValidationMessageFor(model => model.ConfirmNewPassword)
}