Web/TP/TP2/ex5/ex5.html
2024-05-06 10:20:57 +02:00

25 lines
833 B
HTML

<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="http://www.iut-fbleau.fr/css/tacit.css">
<link rel="stylesheet" href="./css/style.css">
</head>
<body container>
<h3>Conjugaison</h3>
<form method="post" action="conjuguer.php" class="form-horizontal">
<fieldset>
<label class="control-label">Verbe du premier groupe</label>
<input type=text name="verbe" >
<label>Temps</label>
<label class="checkbox"><input type=checkbox name="temps[]" value="present"> Présent </label>
<label class="checkbox"><input type=checkbox name="temps[]" value="futur"> Futur </label>
<label class="checkbox"><input type=checkbox name="temps[]" value="imparfait"> Imparfait </label>
<button type="submit" name="accepter">Envoyer</button>
</fieldset>
</form>
</body>
</html>