@model IdentitySample.Models.ChangePasswordViewModel
@{
//TODO: Until we have a way to specify the layout page at application level.
Layout = "/Views/Shared/_Layout.cshtml";
ViewBag.Title = "Change Password";
}
@ViewBag.Title.
@using (Html.BeginForm("ChangePassword", "Manage", FormMethod.Post, new { @class = "form-horizontal", role = "form" }))
{
@Html.AntiForgeryToken()
Change Password Form
@Html.ValidationSummary("", new { @class = "text-danger" })
}