Add exo4 missing bits and exo10 code.
[TD_webapps.git] / ROOT / exo10 / formcheckbox.html
CommitLineData
05e819e4
JB
1<meta charset="UTF-8">
2<html>
3<body>
4
5<form method="POST" action="/Checkbox">
6 Quel joueur préférez-vous ?<br>
7 <input type="checkbox" id="Zidane" name="player" value="Zidane">
8 <label for="Zidane">Zidane</label><br>
9 <input type="checkbox" id="Maradona" name="player" value="Maradona">
10 <label for="Maradona">Maradona</label><br>
11 <input type="checkbox" id="Platini" name="player" value="Platini">
12 <label for="Platini">Platini</label><br>
13 <input type="checkbox" id="Pelé" name="player" value="Pelé">
14 <label for="Pelé">Pelé</label><br><br>
15 <input type="submit" value="Submit">
16</form>
17
18</body>
19</html>