<%@ Page Language="VB" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage(Of $safeprojectname$.RegisterModel)" %> Registrarse

Registrarse.

Cree una cuenta nueva.

<% Using Html.BeginForm() %> <%: Html.AntiForgeryToken() %> <%: Html.ValidationSummary() %>
Formulario de registro
  1. <%: Html.LabelFor(Function(m) m.UserName) %> <%: Html.TextBoxFor(Function(m) m.UserName) %>
  2. <%: Html.LabelFor(Function(m) m.Password) %> <%: Html.PasswordFor(Function(m) m.Password) %>
  3. <%: Html.LabelFor(Function(m) m.ConfirmPassword) %> <%: Html.PasswordFor(Function(m) m.ConfirmPassword) %>
<% End Using %>
<%: Scripts.Render("~/bundles/jqueryval") %>