ProfWendi

Appointment Booking Form

May 23rd, 2021 (edited)
289
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.15 KB | None | 0 0
  1. <h1>Book Vaccine</h1>
  2.  
  3.   <form action="/book" method="post">
  4.     <p><label for="patId">Patient ID:
  5.       <input type="text" required size="7" id="patId" name="patId">
  6.     </label><br>
  7.     <label for="prefDate">Preferred Date:
  8.       <input type="date" required id="prefDate" name="prefDate">
  9.     </label>
  10.    
  11.     <label for="prefStart">Between
  12.       <input type="time" required id="prefStart" name="prefStart">
  13.     </label>
  14.     <label for="prefEnd">and
  15.       <input type="time" required id="prefEnd" name="prefEnd">
  16.     </label></p>
  17.     <fieldset><legend>Check any assistance you require:</legend>
  18.     <label for="assistTr"><input type="checkbox" id="assistTr" name="assist" value="Transportation">
  19.         Transportation</label><br>
  20.     <label for="assistInt"><input type="checkbox" id="assistInt" name="assist" value="Interpreter">
  21.         Interpreter</label><br>
  22.     <label for="assistMob"><input type="checkbox" id="assistMob" name="assist" value="Mobility Device">
  23.         Mobility Device</label><br>
  24.     <label for="assistSg"><input type="checkbox" id="assistSg" name="assist" value="Sight Guide">
  25.         Sight Guide</label></fieldset>
  26.         <p><input type="submit"></p>
  27.   </form>
Advertisement
Add Comment
Please, Sign In to add comment