-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.html
158 lines (129 loc) · 3.43 KB
/
form.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Enter the Contest</title>
<link rel="stylesheet" type="text/css" href="starbuzz.css">
<link rel="stylesheet" type="text/css" href="contest.css">
</head>
<body>
<h1>The Starbuzz Bean Machine</h1>
<h2>Fill out the form below and click "order now" to order</h2>
<form action="http://starbuzzcoffee.com/processorder.php" method="POST" id="table">
<div class="tableRow">
<p>
Choose your beans:
</p>
<p>
<select name="beans">
<option value="house">House Blend</option>
<option value="Shade">Shade Grown Bolivia</option>
<option value="Surpremo">Surpremp</option>
</select>
</p>
</div>
<div class="tableRow">
<p>
Type:
</p>
<p>
<input type="radio" name="hey" value="Whole bean">Whole bean<br>
<input type="radio" name="hey" value="Ground" checked>Ground
</p>
</div>
<div class="tableRow">
<p>
Number of bags:
</p>
<p>
<input type="number" name="bag" max="20" min="0">
</p>
</div>
<div class="tableRow">
<p>
Must arrive by date:
</p>
<p>
<input type="date" name="date">
</p>
</div>
<div class="tableRow">
<p>
Extras:
</p>
<p>
<input type="checkbox" name="checkhehe" value="Gift wrap">Gift wrap<br>
<input type="checkbox" name="checkhehe" checked value="Include catalog with order">Include catalog with order
</p>
</div>
<div class="tableRow">
<p class="heading">
Ship to:
</p>
<p></p>
</div>
<div class="tableRow">
<p>
Name:
</p>
<p>
<input type="text" name="Name">
</p>
</div>
<div class="tableRow">
<p>
Address:
</p>
<p>
<input type="text" name="address">
</p>
</div>
<div class="tableRow">
<p>
City:
</p>
<p>
<input type="text" name="city">
</p>
</div>
<div class="tableRow">
<p>
State:
</p>
<p>
<input type="text" name="State">
</p>
</div>
<div class="tableRow">
<p>
Zip:
</p>
<p>
<input type="text" name="zip">
</p>
</div>
<div class="tableRow">
<p>
Phone:
</p>
<p>
<input type="tels" name="phone">
</p>
</div>
<div class="tableRow">
<p>
Customer Comments:
</p>
<p>
<textarea name="comments" rows="25" cols="50"></textarea>
</p>
</div>
<div class="tableRow">
<p></p>
<p>
<input type="submit">
</p>
</div>
</form>
</body>
</html>