@model MileageTraker.Web.ViewModels.Account.RegisterModel @{ ViewBag.Title = "Register"; }

@ViewBag.Title

Create a new account.

@using (Html.BeginForm()) { @Html.AntiForgeryToken() @Html.Partial("_ValidationSummary")
Registration Form
  1. @Html.LabelFor(m => m.UserName) @Html.TextBoxFor(m => m.UserName)
  2. @Html.LabelFor(m => m.Password) @Html.PasswordFor(m => m.Password)
  3. @Html.LabelFor(m => m.ConfirmPassword) @Html.PasswordFor(m => m.ConfirmPassword)
}