19 lines
665 B
PHP
19 lines
665 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<link rel="stylesheet" href="Recherche.css"/>
|
|
</head>
|
|
<body>
|
|
<div class="global bord">
|
|
<p class="fort">Rechercher un trajet</p>
|
|
<form method="post" action="Liste.php">
|
|
<p><input name="lieu_depart" type="text" placeholder="Lieu de départ" class="centrage"></p>
|
|
<p><input name="lieu_arrivée" type="text" placeholder="Lieu d'arrivée" class="centrage"></p>
|
|
<p><input name="date_heure" type="text" placeholder="Date et heure de départ" class="centrage"></p>
|
|
<p><input name="submit" type="submit" value="Rechercher" class="centrage"></p>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|