Mercurial > altnet-hispano
comparison Agendas/trunk/src/Agendas.Web/Views/Perfil/AddBuiltInAccount.cshtml @ 113:0eac9a1c1a6c
Soporte para asociar cuentas internas a un usuario ya identificado con twitter
author | Carlos Peix |
---|---|
date | Sat, 11 Jun 2011 12:44:47 -0300 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
112:0bca45e1e664 | 113:0eac9a1c1a6c |
---|---|
1 @model AltNetHispano.Agendas.Web.Models.LogOnModel | |
2 <h2>Perfil</h2> | |
3 <p> | |
4 Hola estas son tus cuentas registradas | |
5 </p> | |
6 @Html.ValidationSummary(true, "La validación no fue exitosa, por favor intente de nuevo") | |
7 | |
8 @using (Html.BeginForm()) { | |
9 <div> | |
10 <fieldset> | |
11 <legend>Información de la cuenta interna</legend> | |
12 | |
13 <div class="editor-label"> | |
14 @Html.LabelFor(m => m.UserName) | |
15 </div> | |
16 <div class="editor-field"> | |
17 @Html.TextBoxFor(m => m.UserName) | |
18 @Html.ValidationMessageFor(m => m.UserName) | |
19 </div> | |
20 | |
21 <div class="editor-label"> | |
22 @Html.LabelFor(m => m.Password) | |
23 </div> | |
24 <div class="editor-field"> | |
25 @Html.PasswordFor(m => m.Password) | |
26 @Html.ValidationMessageFor(m => m.Password) | |
27 </div> | |
28 | |
29 <p> | |
30 <input type="submit" value="Validar" /> | |
31 </p> | |
32 </fieldset> | |
33 </div> | |
34 } | |
35 | |
36 <p> | |
37 @Html.ActionLink("Volver", "Index") | |
38 </p> |