-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·28 lines (28 loc) · 958 Bytes
/
index.html
File metadata and controls
executable file
·28 lines (28 loc) · 958 Bytes
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="build/css/vendor.css">
<link rel="stylesheet" href="build/css/styles.css">
<script src="build/js/vendor.min.js"></script>
<script type="text/javascript" src="build/js/app.js"></script>
<title>Github API</title>
</head>
<body>
<div class="container-fluid jumbotron text-center">
<h1>Github User Search</h1>
</div>
<div class="input container">
<label for="userName">Enter a Github User Name:</label>
<input id="userName" type="text">
<button class="button btn-success" id="getRepos">Get User Repos</button>
</div><br>
<div id="showRepos" class="container">
<div id="userPhoto"></div>
<h3><span id="showUserName"></span></h3><br><hr>
<h4><span id="githubUserName"></span></h4>
<h4><span id="showFollowers"></span></h4>
<h4>Repositories:</h4>
<div id ="repos"></div>
</div>
</body>
</html>