-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
88 lines (74 loc) · 3.41 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Bad Dog!</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css" />
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>
<script src="http://serverapi.arcgisonline.com/jsapi/arcgis/3.4/"></script>
<script src="./js/main.js"></script>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<!-- Begin main page -->
<div data-role="page" id="main" data-theme="b">
<div data-role="header" data-theme="b">
<h1>Bad Dog!</h1>
</div>
<div data-role="content">
<form>
<fieldset data-role="collapsible" data-theme="b" data-content-theme="d">
<legend>Description</legend>
<input type="search" name="search-breed" id="search-breed" placeholder="Breed">
<input type="search" name="search-color" id="search-color" placeholder="Color">
<fieldset data-role="controlgroup" data-type="horizontal">
<input type="radio" name="search-sex" id="search-sex-unknown" value="unknown" checked="checked">
<label for="search-sex-unknown">Unknown</label>
<input type="radio" name="search-sex" id="search-sex-male" value="Male">
<label for="search-sex-male">Male</label>
<input type="radio" name="search-sex" id="search-sex-female" value="Female">
<label for="search-sex-female">Female</label>
</fieldset>
</fieldset>
<fieldset data-role="collapsible" data-theme="b" data-content-theme="d">
<legend>Location</legend>
<input type="search" name="search-street" id="search-street" placeholder="Street">
<input type="search" name="search-city" id="search-city" placeholder="City">
</fieldset>
<fieldset data-role="collapsible" data-theme="b" data-content-theme="d">
<legend>Tag and Owner</legend>
<input type="search" name="search-tag" id="search-tag" placeholder="Tag number">
<input type="search" name="search-owner" id="search-owner" placeholder="Owner's name">
</fieldset>
<div class="center-wrapper">
<input type="button" value="Fetch!" onclick="captureForm();" data-inline="true">
</div>
</form>
<div data-role="footer" data-position="fixed" data-theme="b">
<h4>Bad Dog!</h4>
</div>
</div>
</div>
<!-- End Main Page -->
<!-- Begin dog details page -->
<div data-transition="slidefade" data-role="page" id="dog-details" data-theme="b">
<div data-role="header" data-theme="b" data-add-back-btn="true">
<h1>Bad Dog!</h1>
<a href="#main" data-role="button" data-icon="arrow-l" data-iconpos="left" data-inline="true">Back</a>
</div>
<!--<div data-role="content">
<div id="dog-info" data-role ="listview" >
<ul data-role="listview" data-theme="g"/></div>
</div>-->
<!-- listview to display the details of the dogs. -->
<div data-role="content">
<ul id="baddogList" data-role="listview" data-filter="true"></ul>
</div>
<div data-role="footer" data-position="fixed" data-theme="b">
<h4>Bad Dog!</h4>
</div>
</div>
<!-- End dog details page -->
</body>
</html>