Advertisement
Guest User

Untitled

a guest
Dec 11th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.98 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css ">
  5. <style>
  6. h1 {
  7. font-size: 120px !important;
  8. color: navy !important;
  9.  
  10. }
  11. </style>
  12.  
  13. </head>
  14.  
  15. <body>
  16.  
  17. <div class="container">
  18. <div class="row">
  19. <div class="col-sm">
  20. <h1 > Mastermind </h1>
  21. <p> Kraak de code! Je kan zo vaak proberen als je wilt! </p>
  22. </div>
  23. </div>
  24. </div>
  25. <div class="container">
  26. <div class="row">
  27. <div class="col-sm">
  28. <h2> Aantal op de juiste plek: {{ juist }} </h2>
  29. <h2> Aantal juist maar op de foute plek: {{ fout }} </h2>
  30. </div>
  31. </div>
  32. </div>
  33. <div class="container">
  34. <div class="row">
  35. <div class="col-sm">
  36. <h3> {{ kleur0 }} </h3>
  37. </div>
  38. <div class="col-sm">
  39. <h3> {{ kleur1 }} </h3>
  40. </div>
  41. <div class="col-sm">
  42. <h3> {{ kleur2 }} </h3>
  43. </div>
  44. <div class="col-sm">
  45. <h3> {{ kleur3 }} </h3>
  46. </div>
  47. </div>
  48. </div>
  49. <div class="container">
  50. <div class="row">
  51. <div class="col-sm">
  52. <select class="custom-select"name="kleur0" form="mastermind">
  53. <option value="Rood" {% if kleur0 == "Rood": %} selected {% endif %}>Rood</option>
  54. <option value="Blauw"{% if kleur0 == "Blauw": %} selected {% endif %}>Blauw</option>
  55. <option value="Groen"{% if kleur0 == "Groen": %} selected {% endif %}>Groen</option>
  56. <option value="Oranje"{% if kleur0 == "Oranje": %} selected {% endif %}>Oranje</option>
  57. <option value="Paars"{% if kleur0 == "Paars": %} selected {% endif %}>Paars</option>
  58. <option value="Geel"{% if kleur0 == "Geel": %} selected {% endif %}>Geel</option>
  59. </select>
  60. </div>
  61. <div class="col-sm">
  62. <select class="custom-select"name="kleur1" form="mastermind">
  63. <option value="Rood" {% if kleur1 == "Rood": %} selected {% endif %}>Rood</option>
  64. <option value="Blauw"{% if kleur1 == "Blauw": %} selected {% endif %}>Blauw</option>
  65. <option value="Groen"{% if kleur1 == "Groen": %} selected {% endif %}>Groen</option>
  66. <option value="Oranje"{% if kleur1 == "Oranje": %} selected {% endif %}>Oranje</option>
  67. <option value="Paars"{% if kleur1 == "Paars": %} selected {% endif %}>Paars</option>
  68. <option value="Geel"{% if kleur1 == "Geel": %} selected {% endif %}>Geel</option>
  69. </select>
  70. </div>
  71. <div class="col-sm">
  72. <select class="custom-select"name="kleur2" form="mastermind">
  73. <option value="Rood" {% if kleur2 == "Rood": %} selected {% endif %}>Rood</option>
  74. <option value="Blauw"{% if kleur2 == "Blauw": %} selected {% endif %}>Blauw</option>
  75. <option value="Groen"{% if kleur2 == "Groen": %} selected {% endif %}>Groen</option>
  76. <option value="Oranje"{% if kleur2 == "Oranje": %} selected {% endif %}>Oranje</option>
  77. <option value="Paars"{% if kleur2 == "Paars": %} selected {% endif %}>Paars</option>
  78. <option value="Geel"{% if kleur2 == "Geel": %} selected {% endif %}>Geel</option>
  79. </select>
  80. </div>
  81. <div class="col-sm">
  82. <select class="custom-select"name="kleur3" form="mastermind">
  83. <option value="Rood" {% if kleur3 == "Rood": %} selected {% endif %}>Rood</option>
  84. <option value="Blauw"{% if kleur3 == "Blauw": %} selected {% endif %}>Blauw</option>
  85. <option value="Groen"{% if kleur3 == "Groen": %} selected {% endif %}>Groen</option>
  86. <option value="Oranje"{% if kleur3 == "Oranje": %} selected {% endif %}>Oranje</option>
  87. <option value="Paars"{% if kleur3 == "Paars": %} selected {% endif %}>Paars</option>
  88. <option value="Geel"{% if kleur3 == "Geel": %} selected {% endif %}>Geel</option>
  89. </select>
  90. </div>
  91. </div>
  92. </div>
  93. <br \>
  94. <p \>
  95. <form action="/mastermind" id="mastermind">
  96. <div class="container">
  97. <div class="row">
  98. <div class="col">
  99. <input class="btn btn-info" type="submit" value="Controleer code">
  100. </div>
  101. </div>
  102. </div>
  103. </form>
  104.  
  105.  
  106. </body>
  107. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement