Advertisement
Garlotch

"Pete's Pizza" v1.2

Jun 7th, 2015
295
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <meta charset="UTF-8">
  3. <html>
  4. <head>
  5. <script type="text/javascript" defer>
  6. function delivery(){
  7. var custName1 = prompt('What name will the order be under?');
  8. var custAddress1 = prompt ('What address should we deliver the order to?');
  9. var custNumber1 = prompt ('Please enter your phone number (land-line) in case we need to contact you');
  10. if (custNumber1 < 8600000 || custNumber1 > 9999999){
  11. while(custNumber1 < 8600000 || custNumber1 > 9999999){
  12. var custNumber1 = prompt('Please enter a valid 7 digit number.\nfrom 8600000-9999999');
  13. }
  14. var custDet1 = confirm('Customer Details\nName: '+custName1+'\nAddress: '+custAddress1+'\nPhone Number: '+custNumber1+'\n\nAre these details correct?');
  15. }
  16. }
  17. </script>
  18. <title>Pete's Pizza</title>
  19. </head>
  20. <body bgcolor="#66FFCC">
  21. <div id="main"><center><h1>Pete's Pizza</h1>
  22. <h2><i>"The best pizza in Gisborne!"</i></h2><br>
  23. <h2><b><font color="red">◄</font> Pete's Pizza Menu <font color="red">►</font></b></h2>
  24. <br>
  25. <h3>Standard Pizzas (Hawaiian, Cheese, Veggie, Supreme, Pepperoni) - cost: <font color="red"><b><u>$9:50</u></b></font></h3>
  26. <h3>Gourmet Pizzas (Meat-lovers, Chicken, Prawn) - Cost: <font color="red"><b><u>$15.50</u></b></font></h3>
  27. <br><br>
  28. <hr width="1200px" color="#003300">
  29. <br>
  30. <h2><b><font color="#003300">◄ </font>Is this order for 'Pickup' or 'Delivery'?<font color="#003300"> ►</font></b></h2><br>
  31. <input type=button value="Delivery" onclick="delivery()" id="delivery">&nbsp;<input type=button value="Pickup" onclick="pickup()" id="pickup">
  32. </center>
  33. </div>
  34. </body>
  35. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement