Guest User

Untitled

a guest
Oct 15th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. <!Doctype html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  5. <title>Cargomedia form example</title>
  6. </head>
  7. <body>
  8. <div class="form-wrap">
  9. <h3 class="form-title">Title</h3>
  10. <form action="">
  11. <ul class="login-form">
  12. <li class="group">
  13. <label class="input-title" for="username">Username</label>
  14. <div class="controls">
  15. <input class="input-text border-small" id="username" required type="name" />
  16. </div>
  17. </li>
  18. <li class="group">
  19. <label class="input-title"for="userpwd">Password</label>
  20. <div class="controls">
  21. <input class="input-text border-small" id="userpwd" required type="password" />
  22. </div>
  23. </li>
  24. <li>
  25. <div class="controls">
  26. <input class="input-checkbox border-small" id="rememberuser" type="checkbox" />
  27. <label for="rememberuser">Checkbox</label>
  28. </div>
  29. </li>
  30. <li>
  31. <div class="controls">
  32. <input class="input-submit border-small" type="submit" value="Submit Button" />
  33. </div>
  34. </li>
  35. </ul>
  36. </form>
  37. </div>
  38. </body>
  39. </html>
Add Comment
Please, Sign In to add comment