63 lines
1.8 KiB
HTML
63 lines
1.8 KiB
HTML
|
<!doctype html>
|
||
|
<html lang="fr">
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>Exercice 1</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<form method="post" action="https://dwarves.iut-fbleau.fr/requete.php">
|
||
|
<label for="nom" required>Nom :</label><br>
|
||
|
<input type="text" id="nom" name="nom" required><br>
|
||
|
|
||
|
<label for="prenom">Prenom :</label><br>
|
||
|
<input type="text" id="prenom" name="prenom" required><br>
|
||
|
|
||
|
<label for="datenaissance">Date de naissance :</label><br>
|
||
|
<input type="date" id="datenaissance" name="datenaissance" required><br>
|
||
|
|
||
|
<label for="email">E-mail :</label><br>
|
||
|
<input type="email" id="email" name="email" required><br>
|
||
|
|
||
|
<label for="codepostal">Code postal :</label><br>
|
||
|
<input type="number" id="codepostal" name="codepostal" required><br>
|
||
|
|
||
|
<label for="telelphone">Téléphone portable :</label><br>
|
||
|
<input type="tel" id="telelphone" name="telelphone" required><br>
|
||
|
|
||
|
<label for="sexe" required>Sexe :</label><br>
|
||
|
<input type="radio" name="sexe" required /> Homme <br />
|
||
|
<input type="radio" name="sexe" required /> Femme
|
||
|
|
||
|
|
||
|
<br><label for="semestre">Semestre :</label><br>
|
||
|
<select list="semestre" required>
|
||
|
<option value="S1">S1</option>
|
||
|
<option value="S2">S2</option>
|
||
|
<option value="S3">S3</option>
|
||
|
<option value="S4">S4</option>
|
||
|
</select> <br>
|
||
|
|
||
|
<br> <label for="level">Niveau en HTML :</label>
|
||
|
<input type="range" id="level" name="level" min="0" max="10" required><br>
|
||
|
|
||
|
<br><label for="message">Message :</label><br>
|
||
|
<input type="text" id="message" name="message" required><br>
|
||
|
|
||
|
|
||
|
<br><input type="reset" value="Reset" />
|
||
|
<input type="submit" value="Submit" />
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
</form>
|
||
|
|
||
|
|
||
|
</body>
|
||
|
</html>
|
||
|
|