<%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %> Register

Create a New Account

Use the form below to create a new account.

Passwords are required to be a minimum of <%: ViewData["PasswordLength"] %> characters in length.

<% using (Html.BeginForm()) { %> <%: Html.ValidationSummary(true, "Account creation was unsuccessful. Please correct the errors and try again.") %>
Account Information
<%: Html.LabelFor(m => m.UserName) %>
<%: Html.TextBoxFor(m => m.UserName) %> <%: Html.ValidationMessageFor(m => m.UserName) %>
<%: Html.LabelFor(m => m.Email) %>
<%: Html.TextBoxFor(m => m.Email) %> <%: Html.ValidationMessageFor(m => m.Email) %>
<%: Html.LabelFor(m => m.Password) %>
<%: Html.PasswordFor(m => m.Password) %> <%: Html.ValidationMessageFor(m => m.Password) %>
<%: Html.LabelFor(m => m.ConfirmPassword) %>
<%: Html.PasswordFor(m => m.ConfirmPassword) %> <%: Html.ValidationMessageFor(m => m.ConfirmPassword) %>

<% } %>