You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
721 B
20 lines
721 B
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Réservation (saisie)</title>
|
|
<style>
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Réserver pour ?</h1>
|
|
<form action="validation.php" method="POST">
|
|
<label for="nom">Nom :</label><input type="text" name="nom" id="nom"/>
|
|
<br/><label for="prenom">Prénom :</label><input type="text" name="prenom" id="prenom"/>
|
|
<br/><label for="infos">Informations particulières ?</label>
|
|
<br/><textarea name="infos" id="infos"></textarea>
|
|
<br/><button type="submit" name="action" value="BOOK">Réserver</button>
|
|
</form>
|
|
</body>
|
|
</html> |