<%@ 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 <%=Html.Encode(ViewData["PasswordLength"])%> characters in length.

<%= Html.ValidationSummary("Account creation was unsuccessful. Please correct the errors and try again.") %> <% using (Html.BeginForm()) { %>
Account Information

<%= Html.TextBox("username") %> <%= Html.ValidationMessage("username") %>

<%= Html.TextBox("email") %> <%= Html.ValidationMessage("email") %>

<%= Html.Password("password") %> <%= Html.ValidationMessage("password") %>

<%= Html.Password("confirmPassword") %> <%= Html.ValidationMessage("confirmPassword") %>

<% } %>