You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.3 KiB
PHTML
55 lines
1.3 KiB
PHTML
6 years ago
|
<?php
|
||
|
session_start();
|
||
|
require_once('../ressources/verifconnecte.php');
|
||
|
?>
|
||
|
|
||
|
<!DOCTYPE html>
|
||
|
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8"/>
|
||
|
<link rel="stylesheet" href="recherche.css"/>
|
||
|
<link rel="stylesheet" href="../ressources/navbarhtml.css"/>
|
||
|
<title>Rechercher trajet</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<?php
|
||
|
require_once("../ressources/navbarhtml.php");
|
||
|
?>
|
||
|
<div id="container">
|
||
|
<div id="entete">
|
||
|
<h1>Rechercher trajet</h1><br/>
|
||
|
</div>
|
||
|
<div class="global bord">
|
||
|
<form method="post" action="../liste_trajets/liste_trajet.php">
|
||
|
|
||
|
<label>
|
||
|
<input name="lieu_depart" type="text" placeholder="Lieu de départ" class="centrage" required>
|
||
|
<br/>
|
||
|
<br/>
|
||
|
</label>
|
||
|
|
||
|
<label>
|
||
|
<input name="lieu_arrivee" type="text" placeholder="Lieu d'arrivée" class="centrage" required>
|
||
|
<br/>
|
||
|
<br/>
|
||
|
</label>
|
||
|
|
||
|
<label>
|
||
|
<input name="date_heure" type="date" placeholder="Date et heure de départ" class="centrage"
|
||
|
required>
|
||
|
<br/>
|
||
|
</label>
|
||
|
<br/>
|
||
|
<label>
|
||
|
<input id="submit" name="submit" type="submit" value="Rechercher" class="centrage">
|
||
|
</label>
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
</body>
|
||
|
|
||
|
</html>
|