Fix the authenfication check.
[Project_webapp.git] / includes / search.php
CommitLineData
a96fefe1
JB
1<h1> Rechercher un vol </h1>
2
3<form action="index.php" id="search" method="post">
4 <input type="hidden" name="form" value="search" />
5 <label> De&#769;part : Ville -> </label>
6 <input type="text" size="15" name="departure_city" required/>
7 <label> Date -> </label>
db6cae90 8 <input type="datetime-local" name="departure_date" value="<?php echo date('Y-m-d\TH:i'); ?>" required/>
a96fefe1
JB
9 <label> Arrive&#769;e : Ville -> </label>
10 <input type="text" size="15" name="arrival_city" required/>
11 <label> Date -> </label>
db6cae90 12 <input type="datetime-local" name="arrival_date" value="<?php echo date('Y-m-d\TH:i'); ?>" required/>
a96fefe1
JB
13 <input type="submit" value="Valider">
14</form>