@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")

@ViewBag.Title

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")
@Html.EditorForModel() @Html.ActionLink("Log in", "Login", new { Model.Username }, new { @class = "pull-right" })
}