Advertisement
Guest User

Untitled

a guest
Aug 21st, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.36 KB | None | 0 0
  1. <div class="container-fluid">
  2. <div class="row-fluid">
  3.  
  4. <div class="col-lg-3">
  5. <span>Nome: </span>@Html.ValidationMessageFor(model => model.Nome, "", new {@style = "color: red"})
  6. <p>@Html.EditorFor(model => model.Nome, new {htmlAttributes = new {@class = "form-control"}})</p>
  7.  
  8. <span>Cognome: </span>@Html.ValidationMessageFor(model => model.Cognome, "", new {@style = "color: red"})
  9. <p>@Html.EditorFor(model => model.Cognome, new {htmlAttributes = new {@class = "form-control"}})</p>
  10.  
  11. <span>Ruolo: </span>@Html.ValidationMessageFor(model => model.Ruolo, "", new {@style = "color: red"})
  12. <p>@Html.EditorFor(model => model.Ruolo, new {htmlAttributes = new {@class = "form-control"}})</p>
  13.  
  14. <span>Divisione: </span>@Html.ValidationMessageFor(model => model.Divisione, "", new {@style = "color: red"})
  15. <p>@Html.EditorFor(model => model.Divisione, new {htmlAttributes = new {@class = "form-control"}})</p>
  16.  
  17. <span>Calendar: </span>@Html.ValidationMessageFor(model => model.Calendar, "", new {@style = "color: red"})
  18. <p>@Html.EditorFor(model => model.Calendar, new {htmlAttributes = new {@class = "form-control"}})</p>
  19.  
  20. <span>Username: </span>@Html.ValidationMessageFor(model => model.Username, "", new {@style = "color: red"})
  21. <p>@Html.EditorFor(model => model.Username, new {htmlAttributes = new {@class = "form-control"}})</p>
  22.  
  23. <span>Password: </span>@Html.ValidationMessageFor(model => model.Password, "", new {@style = "color: red"})
  24. <p>@Html.EditorFor(model => model.Password, new {htmlAttributes = new {@class = "form-control"}})</p>
  25.  
  26. <span>Indirizzo mail: </span>@Html.ValidationMessageFor(model => model.Email, "", new {@style = "color: red"})
  27. <p>@Html.EditorFor(model => model.Email, new {htmlAttributes = new {@class = "form-control"}})</p>
  28.  
  29. <span>Conferma indirizzo mail: </span>@Html.ValidationMessageFor(model => model.EmailConfirmed, "", new {@style = "color: red"})
  30. <p>@Html.EditorFor(model => model.EmailConfirmed, new {htmlAttributes = new {@class = "form-control"}})</p>
  31.  
  32. <span>Attiva login per accesso area riservata: </span>@Html.ValidationMessageFor(model => model.LoginAttivo, "", new {@style = "color: red"})
  33. <p>@Html.CheckBoxFor(model => model.LoginAttivo, new {htmlAttributes = new {@class = "form-control"}})</p>
  34.  
  35. <span>Telefono lavoro: </span>@Html.ValidationMessageFor(model => model.TelefonoLavoro, "", new {@style = "color: red"})
  36. <p>@Html.EditorFor(model => model.TelefonoLavoro, new {placeholder = "Telefono lavoro"})</p>
  37.  
  38. <span>Telefono personale: </span>@Html.ValidationMessageFor(model => model.TelefonoPersonale, "", new {@style = "color: red"})
  39. <p>@Html.TextBoxFor(model => model.TelefonoPersonale)</p>
  40.  
  41. </div>
  42.  
  43. <div class="col-lg-9">
  44. <img src="@Url.Content(@Model.PathPhoto)" class="img-rounded" alt=" smiley face" width="236" height="304">
  45. </div>
  46. </div>
  47.  
  48. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement