%@ Page Language="VB" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage(Of $safeprojectname$.LoginModel)" %> Iniciar sesión <%: Html.ActionLink("Cancelar", "Index", "Home", Nothing, New With {.data_icon = "arrow-l", .data_rel = "back" }) %> Iniciar sesión Escriba su nombre de usuario y contraseña. <%: Html.ActionLink("Registrarse", "Register") %> si no tiene una cuenta. <% Using Html.BeginForm() %> <%: Html.AntiForgeryToken() %> <%: Html.ValidationSummary() %> Detalles <%: Html.LabelFor(Function(m) m.UserName) %> <%: Html.TextBoxFor(Function(m) m.UserName) %> <%: Html.LabelFor(Function(m) m.Password) %> <%: Html.PasswordFor(Function(m) m.Password) %> <%: Html.LabelFor(Function(m) m.RememberMe) %> <%: Html.CheckBoxFor(Function(m) m.RememberMe) %> <% End Using %> <%: Scripts.Render("~/bundles/jqueryval") %>
Escriba su nombre de usuario y contraseña. <%: Html.ActionLink("Registrarse", "Register") %> si no tiene una cuenta.