Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <div class="form-group">
  2. @Html.LabelFor(model => model.Senha, htmlAttributes: new { @class = "control-label col-md-2" })
  3. <div class="col-md-10">
  4. @Html.EditorFor(model => model.Senha, new { htmlAttributes = new { @class = "form-control senha", id = "Senha", required="true" } })
  5. @Html.ValidationMessageFor(model => model.Senha, "", new { @class = "text-danger" })
  6. </div>
  7. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement