Advertisement
Guest User

Untitled

a guest
Feb 10th, 2019
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.28 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>Bootstrap Example</title>
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css">
  8. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
  9. <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js"></script>
  10. <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js"></script>
  11. </head>
  12. <body>
  13. <div class="container bg-dark pb-3 pt-3">
  14. <form action="/register.php" method="post">
  15. <div class="form-group">
  16. <label for="username" class="text-light font-weight-bold">Username:</label>
  17. <div class="input-group">
  18. <div class="input-group-prepend">
  19. <span class="input-group-text">&</span>
  20. </div>
  21. <input type="text" class="form-control" id="username" name="username" required>
  22. </div>
  23. </div>
  24. <div class="form-group">
  25. <label for="email" class="text-light font-weight-bold">Email:</label>
  26. <div class="input-group">
  27. <div class="input-group-prepend">
  28. <span class="input-group-text">@</span>
  29. </div>
  30. <input type="email" class="form-control" id="email" name="email" required>
  31. </div>
  32. </div>
  33. <div class="form-group">
  34. <label for="pass" class="text-light font-weight-bold">Password:</label>
  35. <div class="input-group">
  36. <div class="input-group-prepend">
  37. <span class="input-group-text">P</span>
  38. </div>
  39. <input type="password" class="form-control" id="pass" name="password" required>
  40. </div>
  41. </div>
  42. <div class="form-group">
  43. <label for="rpass" class="text-light font-weight-bold">Repeat Password:</label>
  44. <div class="input-group">
  45. <div class="input-group-prepend">
  46. <span class="input-group-text">P</span>
  47. </div>
  48. <input type="password" class="form-control" id="rpass" name="repeatpassword" required>
  49. </div>
  50. </div>
  51. <div class="custom-control custom-radio custom-control-inline col-sm-3">
  52. <input type="radio" class="custom-control-input" id="radio1" name="radio">
  53. <label for="radio1" class="custom-control-label text-light font-weight-bold">Chlapec</label>
  54. </div>
  55. <div class="custom-control custom-radio custom-control-inline col-sm-3">
  56. <input type="radio" class="custom-control-input" id="radio2" name="radio">
  57. <label for="radio2" class="custom-control-label text-light font-weight-bold">Dievča</label>
  58. </div>
  59. <div class="custom-control custom-radio custom-control-inline col-sm-3">
  60. <input type="radio" class="custom-control-input" id="radio3" name="radio">
  61. <label for="radio3" class="custom-control-label text-light font-weight-bold">Player</label>
  62. </div>
  63. <div class="form-group">
  64. <label for="age" class="text-light font-weight-bold">Age:</label>
  65. <div class="input-group">
  66. <div class="input-group-prepend">
  67. <span class="input-group-text">0</span>
  68. </div>
  69. <input type="number" class="form-control" id="age" name="age" required>
  70. </div>
  71. </div>
  72. <div class="form-group">
  73. <label for="sel1" class="text-light font-weight-bold">Games:</label>
  74. <select multiple class="custom-select" name="games">
  75. <option value="gta5">GTA 5</option>
  76. <option value="mc">MineCraft</option>
  77. <option value="roblox">Roblox</option>
  78. <option value="hacknet">Hacknet</option>
  79. <option value="ništ">Ani jedno</option>
  80. </select>
  81. </div>
  82. <div class="form-group">
  83. <input type="range" class="custom-range">
  84. </div>
  85. <div class="custom-control custom-checkbox" style="margin-bottom:1rem">
  86. <input type="checkbox" class="custom-control-input" id="check1" name="checkpodminky" required>
  87. <label for="check1" class="custom-control-label text-light font-weight-bold">Akceptujem <a href="#" class="alert-link">podmienky</a>.</label>
  88. </div>
  89. <button type="submit" class="btn btn-success btn-block">Submit</button>
  90. </form>
  91. </div>
  92. </body>
  93. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement