Advertisement
Guest User

Untitled

a guest
May 30th, 2015
281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.20 KB | None | 0 0
  1. function checkReservationForm()
  2. { ?>
  3.     <div id="checkReservation" class="component col-md-2">
  4.         <div class="panel panel-primary">
  5.             <div class="panel-heading">
  6.                 <h2>Zoek beschikbare appartementen</h2>
  7.             </div>
  8.             <div class="panel-body">
  9.                 <form action="index.php?action=checkReservation" method="post">
  10.                     <?php if (isset($_GET["error"])) : ?>
  11.                         <p class="error">De begindatum moet kleiner zijn dan de einddatum.</p>
  12.                     <?php endif ?>
  13.                     <div class="form-group">
  14.                         <label for="begindate">begindatum: </label>
  15.                         <input type="date" class="form-control" name="begindate" id="begindate"/>
  16.                     </div>
  17.                     <div class="form-group">
  18.                         <label for="enddate">einddatum: </label>
  19.                         <input type="date" class="form-control" name="enddate" id="enddate"/>
  20.                     </div>
  21.                     <input type="submit" class="btn btn-default" name="check" value="check">
  22.                 </form>
  23.             </div>
  24.         </div>
  25.     </div>
  26. <?php }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement