Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Web/Views/Account/Register.cshtml @ 126:6012f2becf97
Se agrega instalación de nuget package para el calendario de google.
author | alabra |
---|---|
date | Tue, 28 Jun 2011 23:35:22 -0400 |
parents | 1eb5a0e531bf |
children |
line wrap: on
line source
@model AltNetHispano.Agendas.Web.Models.RegisterModel <h2>Create a New Account</h2> <p> Use the form below to create a new account. </p> <p> Passwords are required to be a minimum of @ViewBag.PasswordLength characters in length. </p> <script src="@Url.Content("~/Scripts/jquery.validate.min.js")" type="text/javascript"></script> <script src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.min.js")" type="text/javascript"></script> @using (Html.BeginForm()) { @Html.ValidationSummary(true, "Account creation was unsuccessful. Please correct the errors and try again.") @Html.EditorForModel() <p> <input type="submit" value="Register" /> </p> }