Mercurial > altnet-hispano
annotate Agendas/trunk/src/Agendas.Web/Views/Account/LogOn.cshtml @ 57:3d9e6d56d903
Refactoring del track de cambios de un evento
author | nelopauselli |
---|---|
date | Mon, 16 May 2011 20:23:31 -0300 |
parents | 08dbe42fdde1 |
children | d1688622fa88 |
rev | line source |
---|---|
34
475be11edf56
Ajuste en los nombre de los assemblies y namespaces
nelo@MTEySS.neluz.int
parents:
10
diff
changeset
|
1 @model AltNetHispano.Agendas.Web.Models.LogOnModel |
10 | 2 <h2>Log On</h2> |
3 <p> | |
4 Please enter your username and password. @Html.ActionLink("Register", "Register") if you don't have an account. | |
5 </p> | |
6 | |
7 <script src="@Url.Content("~/Scripts/jquery.validate.min.js")" type="text/javascript"></script> | |
8 <script src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.min.js")" type="text/javascript"></script> | |
9 | |
10 @Html.ValidationSummary(true, "Login was unsuccessful. Please correct the errors and try again.") | |
11 | |
12 @using (Html.BeginForm()) { | |
13 <div> | |
14 <fieldset> | |
15 <legend>Account Information</legend> | |
16 | |
17 <div class="editor-label"> | |
18 @Html.LabelFor(m => m.UserName) | |
19 </div> | |
20 <div class="editor-field"> | |
21 @Html.TextBoxFor(m => m.UserName) | |
22 @Html.ValidationMessageFor(m => m.UserName) | |
23 </div> | |
24 | |
25 <div class="editor-label"> | |
26 @Html.LabelFor(m => m.Password) | |
27 </div> | |
28 <div class="editor-field"> | |
29 @Html.PasswordFor(m => m.Password) | |
30 @Html.ValidationMessageFor(m => m.Password) | |
31 </div> | |
32 | |
33 <div class="editor-label"> | |
34 @Html.CheckBoxFor(m => m.RememberMe) | |
35 @Html.LabelFor(m => m.RememberMe) | |
36 </div> | |
37 | |
38 <p> | |
39 <input type="submit" value="Log On" /> | |
40 </p> | |
41 </fieldset> | |
42 </div> | |
43 } |