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

Login

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

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

<%: Html.PasswordFor(x => x.Password, new { @class = "text-input medium-input required" })%> <%: Html.ValidationMessageFor(x => x.Password)%>
<%: Html.ActionLink("Forgot Password?", "Forgot", new { controller = "Account" }, new { @id = "ForgotPasswordLink" })%>

<% } %>