Advertisement
Guest User

confirm.html

a guest
Sep 25th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.05 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <title>Rohirrim Booking Confirmation</title>
  5.     <meta charset="utf-8"/>
  6.     <meta name="description" content="Rohirrim Booking Confirmation" />
  7.     <meta name="keywords"    content="MiddleEarth, Tours, Rohan" />
  8.     <meta name="author"      content="Grima Wormtongue" />
  9.     <script src="confirm.js"></script>
  10. </head>
  11.  
  12. <body>
  13.  
  14. <header>
  15.     <h1>Rohirrim Ranch Tours</h1>
  16.     <h2>Booking Confirmation</h2>
  17. </header>
  18.  
  19. <form id="bookform">
  20.     <fieldset>
  21.         <legend>Your Booking</legend>
  22.         <p>Your Name: <span id="confirm_name"></span></p>
  23.         <p>Species: <span id="confirm_species"></span></p>
  24.         <p>Age: <span id="confirm_age"></span></p>
  25.         <p>Trips booked: <span  id="confirm_trip"></span></p>
  26.         <p>Food Preference: <span  id="confirm_food"></span></p>
  27.         <p>Number of beings: <span  id="confirm_partySize"></span></p>
  28.         <p>Total Cost: $<span  id="confirm_cost"></span></p>
  29.  
  30.         <input type="hidden" name="firstname" id="firstname" />
  31.         <input type="hidden" name="lastname" id="lastname" />
  32.         <input type="hidden" name="species" id="species"/>
  33.         <input type="hidden" name="age" id="age"/>
  34.         <input type="hidden" name="trips" id="trips"/>
  35.         <input type="hidden" name="food" id="food"/>
  36.         <input type="hidden" name="partySize" id="partySize"/>
  37.  
  38.         <!--Create the other hidden input here  -->
  39.  
  40.         <p><label for="date">Preferred Date</label>
  41.             <input type="text" id="date" name="bookday" required="required" placeholder="dd/mm/yyyy" pattern="\d{1,2}/\d{1,2}/\d{4}" title="Format dd/mm/yyyy" maxlength="10" size="10" />
  42.         </p>
  43.         <input type="submit" value="Confirm Booking" />
  44.         <button type="button" id="cancelButton">Cancel</button>
  45.   </fieldset>
  46. </form>
  47.  
  48. <footer>
  49. <div>
  50.     <h2 class="fineprint">Conditions Apply</h2>
  51.     <p class="fineprint">  Rohirrim Dude Ranch management takes no responsibility for any injury, spells (sleeping or otherwise) , spider-bites, or for anything whatsoever.    </p>
  52. </div>
  53.     <p id="contact" >Any enquiries please email the <a href="mailto:wormtongue@saruman.net.me">manager</a></p>
  54. </footer>
  55.  
  56. </body>
  57. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement