-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 908 Bytes
/
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
<!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></title>
</head>
<body>
<div class="container">
<div class="jumbotron">
<h1>Git repo finder</h1>
</div>
<form id = "userForm">
<label for="username">Enter git username</label>
<input id="userName" type="text" required>
<button id="formButton" type="submit" class="btn btn-info">Go!</button>
</form>
<nav>
<ul class="pager">
<li class="back"><a href="#">Previous</a></li>
<li class="forward"><a href="#">Next</a></li>
</ul>
</nav>
<h2></h2>
<div id="gitRepos"></div>
</div>
</body>
</html>