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

Reset Password

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

<%: Html.LabelFor(x => x.Password1, "Enter new password:")%> <%: Html.PasswordFor(x => x.Password1, new { @id="passwordOne", @class = "text-input medium-input required", @maxlength = "255" })%> <%: Html.ValidationMessageFor(x => x.Password1)%>

<%: Html.LabelFor(x => x.Password2, "Confirm new password:")%> <%: Html.PasswordFor(x => x.Password2, new { @class = "text-input medium-input required", @maxlength = "255" })%> <%: Html.ValidationMessageFor(x => x.Password2)%>

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

<% } %>