-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (35 loc) · 1.39 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
<!DOCTYPE html>
<html>
<head>
<script src="build/js/vendor.min.js" type="text/javascript"></script>
<script src="build/js/app.js" type="text/javascript"></script>
<link href="build/css/vendor.css" rel="stylesheet">
<link href="./css/styles.css" rel="stylesheet">
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<title>Github User Lookup</title>
</head>
<body>
<body background="IMAGES/blank-wallpaper8.jpg">
<h1 class="page-header"><img src="IMAGES/20.png" alt="" style="width:204px;height:128px;"><br>View a GitHub Account</h1>
<p>Type in a username and view the account's public repositories</p>
<form id="username-form" class="form-group">
<h2>GitHub Username</h2><input id="username-input" class="form-control">
<button type="submit" class="btn btn-success">Submit</button>
</form>
<div id="account-info">
<h1 id="show-name"></h1>
<a href="https://github.com/"><h2 id="show-url"></h2></a>
<h2 id="repo-number">Public repositories: <span id="show-repo-number"></span></h2>
<div id="following-header" class="row">
<h2 class="col-xs-5">Followers: <span id="show-followers"></span></h2>
<h2 class="col-xs-2">|</h2>
<h2 class="col-xs-5">Following: <span id="show-following"></span></h2>
</div>
<ul id="show-repo-list"></ul>
</div>
</body>
</html>
</div>
</body>
</html>