-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
104 lines (99 loc) · 5.19 KB
/
index.html
File metadata and controls
104 lines (99 loc) · 5.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Montserrat|Open+Sans|Pacifico" rel="stylesheet">
<link rel="stylesheet" href="css/bootstrap.css" type="text/css">
<link rel="stylesheet" href="css/styles.css" type="text/css">
<script src="js/jquery-3.1.1.js"></script>
<script src="js/scripts.js"></script>
<title>Pizza Your Heart</title>
</head>
<body>
<div class="container" id="section-one">
<div class="well" id="homeWell">
<h1>Welcome to</h1>
<h1><span class="highlight">Pizza Your Heart!</span></h1>
<h4>To get started with your online order, please fill out the form below.</h4>
<form id="userName">
<div class="form-group">
<label for="name">Enter Your Name:</label>
<input type="text" name="name" id="name" class="form-control">
</div>
<div class="form-group">
<label for="email">Enter Your Email:</label>
<input type="email" name="email" id="email" class="form-control">
</div>
<button type="submit" class="btn btn-danger">Let's Go!</button>
</form>
</div>
</div><!--end of section-one-->
<div class="container" id="section-two">
<div class="well" id="orderWell">
<h2 class="emphasize">Let's get pizza # <span class=" highlight pizzaNumber"></span> rolling <span class="underline nameForOrder"></span>!</h2>
<h5>Select the options to customize your pizza below.</h5><br>
<div class="row">
<div class="col-md-8">
<form id="pizzaForm">
<div class="form-group row">
<label for="toppings">Please check all the toppings you would like on your pizza ($0.75 each):</label> <br>
<div class="col-md-4">
<input type="checkbox" name="toppings" value="mushrooms"> Mushrooms <br>
<input type="checkbox" name="toppings" value="onions"> Onions <br>
<input type="checkbox" name="toppings" value="pepperoni"> Pepperoni <br>
<input type="checkbox" name="toppings" value="canadian bacon"> Canadian Bacon <br>
</div><!--end of col 1-->
<div class="col-md-4">
<input type="checkbox" name="toppings" value="pineapple"> Pineapple <br>
<input type="checkbox" name="toppings" value="anchovy"> Anchovy <br>
<input type="checkbox" name="toppings" value="cheese"> Cheese <br>
<input type="checkbox" name="toppings" value="sausage"> Sausage <br>
</div><!--end of col 2-->
</div><!--end of row-->
<div class="form-group">
<label for="crust">Pick a crust for your pizza:</label>
<select class="form-control" id="crust">
<option></option>
<option value="thin">Thin Crust</option>
<option value="original">Original</option>
<option value="stuffed">Stuffed Crust + $1.99</option>
<option value="deep dish">Deep Dish + $1.99</option>
</select>
</div>
<div class="form-group">
<label for="size">Pick a size for your pizza:</label>
<select class="form-control" id="size">
<option></option>
<option value="6.99">Small - $6.99 </option>
<option value="8.99">Medium - $8.99</option>
<option value="10.99">Large - $10.99</option>
<option value="12.99">Giant - $12.99</option>
</select>
</div>
<center><button type="submit" class="btn btn-danger"><span class="re"></span>Calculate Cost!</button></center>
</form>
</div><!--end of 1st col-->
<div class="col-md-4">
<div class="well" id="priceWell">
<h3><span class="underline">Order Cost</span></h3><br>
<p>Toppings Cost: $<span class="toppingsPrice">0.00</span></p>
<p>Crust Cost: $<span class="crustPrice">0.00</span></p>
<p>Size Cost: $<span class="sizePrice">0.00</span></p>
<p>Current Pizza Total: $<span class="price">0.00</span></p>
<ul><span class="pizzaNumberCost"></span></ul>
<p class="color">Current Order Total: $<span class="totalPrice">0.00</span></p>
<center><button type="submit" class="btn btn-default">Add Pizza</button><button type="submit" class="btn btn-success">Place Order</button></center>
</div>
</div>
</div><!--end of row-->
</div><!--end of overall well-->
</div><!--end of section-two-->
<div class="container" id="section-three">
<div class="well" id="resultWell">
<h1><span class="highlight">Thanks, <span class="nameForOrder"></span>!</span></h1>
<p>Your pizza is on its way.</p>
<p>You ordered <span class="pizzaNumber"></span> pizza(s) for a total cost of $<span class="totalPrice">0.00</span>.</p>
<p>An email has been sent to <span class="underline emailForOrder"></span> confirming your order.</p>
</div>
</div>
</body>
</html>