-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
70 lines (48 loc) · 2.13 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
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- ToDo Figure out how to abstract source recollection/recording. -->
<meta name="description" content="A simple webapp for viewing GitHub user data.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="manifest" href="manifest.json">
<meta name="theme-color" content="#b3b3b3">
<link rel="apple-touch-icon" sizes="180x180" href="./img/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" href="./img/favicons/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="./img/favicons/favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="./img/favicons/manifest.json">
<link rel="mask-icon" href="./img/favicons/safari-pinned-tab.svg" color="#5bbad5">
<meta name="theme-color" content="#ffffff">
<title>GH-Pages WebApp!</title>
<meta name="author" content="Ben Haos with a little help...">
<link rel="stylesheet" type="text/css" media="all" href="css/haoStyle.css">
<script type="text/javascript" src="js/jquery-1.10.2.min.js"></script>
</head>
<body>
<img src="img/grey.png" class="fullpage_background_image" alt="">
<div id="page_contents">
<h1 id="pageTitle">Github Pages WebApp</h1>
<div id="basicGitHubUserDataContainer">
<!-- this div is populated by the app.-->
</div>
<div>
<input type="text" name="textInputForGitHubUserName" id="inputGitHubUserField" placeholder="">
</div>
<div>
<a href="#" id="basicDataButton" class="queryButton">Basic User Data</a>
<a href="#" id="GitHubPagesButton" class="queryButton">GH-Pages</a>
<a href="#" id="resetButton" class="queryButton">Reset Page</a>
</div>
</br>
<div id="githubAPIdata">
<!-- this div is populated by the app.-->
</div>
<div id="githubPagesData" class="repolist clearfix">
<!-- this div is populated by the app.-->
</div>
<a href="pgs/index.html" class="back_page_link">*</a>
</div>
</body>
<script type="text/javascript" src="js/haos_github_pages_webapp.js"></script>
</html>