Advertisement
Garlotch

"Pete's Pizza" v1.4

Jun 7th, 2015
249
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 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 (isNan(custNumber1) || custNumber1 < 8600000 || custNumber1 > 9999999)
  11. {
  12. while(isNan(custNumber1) || custNumber1 < 8600000 || custNumber1 > 9999999)
  13. {
  14. var custNumber1 = prompt('Please enter a valid 7 digit number.\nfrom 8600000-9999999');
  15. }
  16. }
  17. var custDet1 = confirm('Customer Details\nName: '+custName1+'\nAddress: '+custAddress1+'\nPhone Number: '+custNumber1+'\n\nAre these details correct? Press Ok to proceed, or Cancel to restart.\n');
  18. if (custDet1 == false)
  19. {
  20. delivery();
  21. }
  22. else
  23. {
  24. }
  25.  
  26. }
  27. </script>
  28. <title>Pete's Pizza</title>
  29. </head>
  30. <body bgcolor="#66FFCC">
  31. <div id="main"><center><h1>Pete's Pizza</h1>
  32. <h2><i>"The best pizza in Gisborne!"</i></h2><br>
  33. <h2><b><font color="red">◄</font> Pete's Pizza Menu <font color="red">►</font></b></h2>
  34. <br>
  35. <h3>Standard Pizzas (Hawaiian, Cheese, Veggie, Supreme, Pepperoni) - cost: <font color="red"><b><u>$9:50</u></b></font></h3>
  36. <h3>Gourmet Pizzas (Meat-lovers, Chicken, Prawn) - Cost: <font color="red"><b><u>$15.50</u></b></font></h3>
  37. <br><br>
  38. <hr width="1200px" color="#003300">
  39. <br>
  40. <h2><b><font color="#003300">◄ </font>Is this order for 'Pickup' or 'Delivery'?<font color="#003300"> ►</font></b></h2><br>
  41. <input type=button value="Delivery" onclick="delivery()" id="delivery">&nbsp;<input type=button value="Pickup" onclick="pickup()" id="pickup">
  42. </center>
  43. </div>
  44. </body>
  45. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement