<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage" MasterPageFile="~/Views/Shared/SleisLayout.Master" %> <%@ Import Namespace="Sleis.Models" %> <% HtmlHelper.ClientValidationEnabled = true; HtmlHelper.UnobtrusiveJavaScriptEnabled = true; %>

Request Password Reset

<% Html.ValidationSummary(); %> <% using (Html.BeginForm()) { %>

<%: Html.LabelFor(x=>x.EmailAddress, "Email Address:") %> <%: Html.TextBoxFor(x => x.EmailAddress, new { @class = "text-input medium-input required", @id = "emailAddress" })%> <%: Html.ValidationMessageFor(x => x.EmailAddress)%>

<%: Html.ActionLink("Cancel", "Login", "Account", null, new { @class = "cancelButton" })%>

<% } %>