@model Top4HireDrivers.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" })
@Html.LabelFor(m => m.Email, new { @class = "col-md-2 control-label" })
@Html.TextBoxFor(m => m.Email, new { @class = "form-control" })
} @section Scripts { @Scripts.Render("~/bundles/jqueryval") }