@model RSystem.Models.ForgotPasswordViewModel
@{
ViewBag.Title = "Forgot your password?";
}
@ViewBag.Title.
@using (Html.BeginForm("ForgotPassword", "Account", FormMethod.Post, new { @class = "form-horizontal", role = "form" }))
{
@Html.AntiForgeryToken()
Enter your email.
@Html.ValidationSummary("", new { @class = "text-danger" })
}
@section Scripts {
@Scripts.Render("~/bundles/jqueryval")
}