-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (42 loc) · 2.07 KB
/
index.html
File metadata and controls
54 lines (42 loc) · 2.07 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="msapplication-tap-highlight" content="no" />
<!-- WARNING: for iOS 7, remove the width=device-width and height=device-height attributes. See https://issues.apache.org/jira/browse/CB-4323 -->
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=medium-dpi" />
<link rel="stylesheet" type="text/css" href="css/jquery.mobile.css" />
<link rel="stylesheet" type="text/css" href="css/jquery.mobile.theme.css" />
<link rel="stylesheet" type="text/css" href="css/index.css" />
<title>GitHub RepoFinder</title>
</head>
<body>
<div class="app">
<div data-role="page">
<header data-role="header">
<h1>RepoFinder</h1>
</header>
<div data-role="content">
<form>
<input id="search_input" type="text" data-type="search" placeholder="Search by User...">
<button type="button" id="search_btn">Search</button>
</form>
<div id="user_info"></div>
<ul id="search_list" data-role="listview"></ul>
<br><br>
<h3>Latest Repos</h3>
<ul id="repo_list" data-role="listview">
</ul>
</div>
<footer data-role="footer">
<h3>Copyright © 2015</h3>
</footer>
</div>
</div>
<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.mobile.js"></script>
<script type="text/javascript" src="js/index.js"></script>
</body>
</html>