Add exo4 missing bits and exo10 code.
[TD_webapps.git] / ROOT / exo10 / formcheckbox.html
diff --git a/ROOT/exo10/formcheckbox.html b/ROOT/exo10/formcheckbox.html
new file mode 100644 (file)
index 0000000..afc6e0d
--- /dev/null
@@ -0,0 +1,19 @@
+<meta charset="UTF-8">
+<html>
+<body>
+
+<form method="POST" action="/Checkbox">
+  Quel joueur préférez-vous ?<br>
+  <input type="checkbox" id="Zidane" name="player" value="Zidane">
+  <label for="Zidane">Zidane</label><br>
+  <input type="checkbox" id="Maradona" name="player" value="Maradona">
+  <label for="Maradona">Maradona</label><br>
+  <input type="checkbox" id="Platini" name="player" value="Platini">
+  <label for="Platini">Platini</label><br>
+  <input type="checkbox" id="Pelé" name="player" value="Pelé">
+  <label for="Pelé">Pelé</label><br><br>
+  <input type="submit" value="Submit">
+</form>
+
+</body>
+</html>