Advertisement
Guest User

Untitled

a guest
Feb 18th, 2015
318
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. @{
  2. ViewBag.Title = "Create";
  3. }
  4.  
  5. <h2>Create new entry</h2>
  6. <form method="post" action="">
  7. <div class="control-group">
  8. <label class="control-label" for="firstName">First name</label>
  9. <div class="controls">
  10. <input id="firstName" name="Name" type="text">
  11. </div>
  12. </div>
  13. <div class="control-group">
  14. <label class="control-label" for="surname">Surname</label>
  15. <div class="controls">
  16. <input id="surname" name="Surname" type="text">
  17. </div>
  18. </div>
  19. <div class="control-group">
  20. <label class="control-label" for="comment">Comment</label>
  21. <div class="controls">
  22. <textarea id="comment" name="Comment" ></textarea>
  23. </div>
  24. </div>
  25. <div class="control-group">
  26. <div class="controls">
  27. <input id="button" value="Submit Entry" type="submit">
  28. </div>
  29. </div>
  30. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement