-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (40 loc) · 1.59 KB
/
index.html
File metadata and controls
68 lines (40 loc) · 1.59 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
<html>
<head>
<title>MHack demo</title>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=true"></script>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<link rel="stylesheet" type="text/css" href="css/index.css">
</head>
<body>
<label id="location">Your location:
<input type="text" id="location_text"></label><div id="confirm">Get Suggestions!</div>
<div id="big_button" onclick="launch();">launch</div>
<div id="map-canvas"></div>
<div id="closet">
<div id="categories"></div>
<div id="types"><div id="inner-type">Select category above to filter clothes in your closet</div></div>
<div id="subtypes"></div>
<div id="selection"></div>
<div id="addCloth" onclick="showAdd();">Add Clothes</div>
</div>
<div id="wearing">
<div id="top"></div>
<div id="bottom"></div>
<div id="feet"></div>
<div id="result"></div>
</div>
<div id="modal" style="display:none">
<label>Brand<input type="text" id="brand"></input></label>
<label>Categories<select id="select1" onchange="selectionChange()"></select></label>
<label>Type<select id="select2" onchange="selectionChangeType()"></select></label>
<label>Subtype<select id="select3"></select></label>
<label>Color<input type="text" id="color"></input></label>
<label>Picture URL<input type="text" id="picURL"></input></label>
<br/>
<br/>
<div id="cancel" onclick="$('#modal').slideUp()">Cancel</div>
<div id="addThis" onclick="addThis();"> Add Item </div>
</div>
</body>
</html>