-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpizza_order.html
83 lines (74 loc) · 3.08 KB
/
pizza_order.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Pizza order</title>
<link rel="stylesheet" href="css/pizza_order.css">
</head>
<body>
<img src="img/Harrys_Pizza_header.png" align="center" alt="Welcome to Harry's Pizza!" height="100" width="600"/>
<div id="container">
<form method="POST" action="http://requestb.in/yqslxcyq">
<h1>Welcome to Harry's Pizza!</h1>
<h2>Returning customer?</h2>
<p>
<label for="email">Email</label>
<input id="email" name="username" type="text" placeholder="Email">
</p>
<p>
<label for="password">Password</label>
<input id="password" name="password" type="password" placeholder="Password">
</p>
<p>
<button type="submit">Login</button>
</p>
<h2>New customer?</h2>
<p>
<label for="full_name">Full name</label>
<input id="full_name" name="full_name" type="text">
</p>
<p>
<label for="email">Email</label>
<input id="email" name="email" type="text">
</p>
<p>
<label for="password">Password</label>
<input id="password" name="password" type="password" placeholder="Password">
</p>
<hr>
<h2>What type of pizza would you like?</h2>
<input type="radio" name="pizza" value="regular">Regular<br>
<input type="radio" name="pizza" value="pan">Pan<br>
<input type="radio" name="pizza" value="stuffed">Stuffed crust<br>
<input type="radio" name="pizza" value="nogluten">Gluten-free<br>
<br>
<h2>What type of toppings would you like?</h2>
<input type="checkbox" name="toppings" value="cheese">Cheese<br>
<input type="checkbox" name="toppings" value="pepperoni">Pepperoni<br>
<input type="checkbox" name="toppings" value="sausage">Italian sausage<br>
<input type="checkbox" name="toppings" value="bacon">Bacon<br>
<input type="checkbox" name="toppings" value="onion">Onions<br>
<input type="checkbox" name="toppings" value="bellpepper">Bell peppers<br>
<input type="checkbox" name="toppings" value="jalapeno">Jalapenos<br>
<h2>Pickup or delivery?</h2>
<select id="transport" name="transport">
<option value="1">Pickup</option>
<option value="2">Delivery</option>
</select>
<h2>How did you hear about us?</h2>
<label for="inquiry">Please select all that apply:</h2><br>
<select id="inquiry" name="inquiry []" multiple>
<option value="1">TV</option>
<option value="2">Radio</option>
<option value="3">Billboard</option>
<option value="4">Newspaper coupon</option>
<option value="5">Web site review</option>
<option value="6">Word of mouth</option>
<option value="7">Just saw us on the street</option>
</select>
<br><br>
<button type="submit">Place your order</button>
</form>
</div>
</body>
</html>