forked from SouICry/fetch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_shopping.html
More file actions
40 lines (34 loc) · 1.19 KB
/
_shopping.html
File metadata and controls
40 lines (34 loc) · 1.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
<div class="container box text-center" id="shopping">
<div class="row" id="shoppingHeader">
<div class="col-xs-12">
<h2>Shopping List</h2>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<form id="shopping_list_form">
<span><input id="shoppingCheckListItem" class="input" type="text" name="checkListItem"
placeholder="What do you need?" autocomplete="off"
autofocus/></span>
</form>
<ul id="shopping_list">
</ul>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<div class="col-xs-4" id="shopping_numItems"></div>
<div class="col-xs-12">
<a id="shopping-back" type="button" class="btn waves-effects"><< Back</a>
<a id="shopping_submit_list" type="button" class="waves-teal btn waves-effects">
Continue >>
</a>
</div>
</div>
</div>
</div>
<div class="footerBars container">
<div class="footer2"></div>
<div class="footer3"></div>
</div>
<script src="js/_shopping.js"></script>