@model MileageTraker.Web.ViewModels.Account.ResetPasswordViewModel @{ ViewBag.Title = "Forgot password?"; Layout = "~/Views/Shared/_Layout.login.cshtml"; } @section Styles { } @using (Html.BeginForm("ResetPassword", "Account", FormMethod.Post, new {@class = "form-login"})) { @Html.Partial("_StatusMessage")
Enter your username to begin resetting your password. An email will be sent to you with instructions for completing the process.
@Html.AntiForgeryToken() @Html.Partial("_ValidationSummary") }