@model LOCWebsite.Models.ChangePasswordModel @{ ViewBag.Title = "Change Password"; }

Change Password

Use the form below to change your password.

New passwords are required to be a minimum of @ViewBag.PasswordLength characters in length.

@using (Html.BeginForm()) { @Html.ValidationSummary(true, "Password change was unsuccessful. Please correct the errors and try again.")
Account Information
@Html.LabelFor(m => m.OldPassword)
@Html.PasswordFor(m => m.OldPassword) @Html.ValidationMessageFor(m => m.OldPassword)
@Html.LabelFor(m => m.NewPassword)
@Html.PasswordFor(m => m.NewPassword) @Html.ValidationMessageFor(m => m.NewPassword)
@Html.LabelFor(m => m.ConfirmPassword)
@Html.PasswordFor(m => m.ConfirmPassword) @Html.ValidationMessageFor(m => m.ConfirmPassword)

}