@model RSystem.Models.ResetPasswordViewModel
@{
ViewBag.Title = "Reset password";
}
@ViewBag.Title.
@using (Html.BeginForm("ResetPassword", "Account", FormMethod.Post, new { @class = "form-horizontal", role = "form" }))
{
@Html.AntiForgeryToken()
Reset your password.
@Html.ValidationSummary("", new { @class = "text-danger" })
@Html.HiddenFor(model => model.Code)
}
@section Scripts {
@Scripts.Render("~/bundles/jqueryval")
}