-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
57 lines (57 loc) · 2.57 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
<!DOCTYPE html>
<html>
<head>
<title>Github Stats</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Get the latest stats of any github project">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="css/main.css">
<link rel="icon" href="docs/logo.ico">
</head>
<body>
<div class="container">
<nav class="navbar navbar-default" role="navigation">
<div class="navbar-item-default">
<div class="navbar-left">
<a href="." target="_self">
Github Stats
</a>
</div>
</div>
<div class="navbar-item-default">
<div class="navbar-right">
<a href="https://github.com/AKruimink/GithubStats" target="_blank">
View Project On Github
</a>
</div>
</div>
</nav>
<div class="content-column">
<div id="search">
<h1>Enter project details</h1>
<div class="form">
<div class="form-group">
<input type="text" id="username" class="form-control" placeholder="Github UserName" autocomplete="off">
</div>
<div class="form-group">
<input type="text" list="repository-list" id="repository" class="form-control" placeholder="Repository Name" autocomplete="off">
<datalist id="repository-list">
</datalist>
</div>
<button id="get-stats-button" class="form-control">
Get the latest stats!
</button>
</div>
</div>
<div id="stats-result">
<div class='alert alert-danger output'>This site requires JavaScript to function!</div>
</div>
</div>
<footer class="footer">
<p>Made by <a href="https://github.com/AKruimink" target="_blank">AKruimink</a></p>
</footer>
</div>
</body>
<script type="text/javascript" src="js/main.js"></script>
</html>