-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (64 loc) · 2.16 KB
/
Copy pathindex.html
File metadata and controls
64 lines (64 loc) · 2.16 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Pizza place</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/css/bootstrap.min.css">
<script src="_build/bundle.js" defer></script>
</head>
<body class="container">
<header>
<h1>Pizza Place</h1>
</header>
<section>
<div class="panel panel-default">
<div class="panel-body">
<form id="pizza-form" data-pizza-order="form">
<div class="form-group">
<label for="emailInput">Email</label>
<input class="form-control" type="email" name="email" id="emailInput" value="enrique@devcode.com" placeholder="enrique@devcode.com">
</div>
<div class="form-group">
<label for="size">Size</label>
<div class="radio">
<label>
<input type="radio" name="size" value="small">
Small
</label>
</div>
<div class="radio">
<label>
<input type="radio" name="size" value="medium" checked>
Medium
</label>
</div>
<div class="radio">
<label>
<input type="radio" name="size" value="large">
Large
</label>
</div>
</div>
<div class="form-group">
<label for="speciality">Speciality</label>
<select id="speciality" class="form-control" name="speciality">
<option value="cheese">Cheese</option>
<option value="hawaiian">Hawaiian</option>
<option value="meats">Meats</option>
<option value="veggie">Veggie</option>
</select>
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
</div>
</div>
<div class="panel panel-default">
<div class="panel-body">
<h4>Pending Orders:</h4>
<div id="checklist">
</div>
</div>
</div>
</section>
</body>
</html>