-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (37 loc) · 1.04 KB
/
Copy pathindex.html
File metadata and controls
43 lines (37 loc) · 1.04 KB
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
<html>
<head>
<meta charset="utf-8">
<script src="./gh3-1.0.3/vendors/jquery-2.1.0.min.js"></script>
<script src="./gh3-1.0.3/vendors/underscore-min.js"></script>
<script src="./gh3-1.0.3/gh3.js"></script>
<link rel="stylesheet" href="style.css" />
<script src="script.js"></script>
</head>
<body>
<label for="male">Start Date:</label>
<input type="text" id="input_startDate" placeholder="YYYY-MM-DD">
<label for="male">End Date:</label>
<input id="input_endDate" placeholder="YYYY-MM-DD">
</br>
</br>
<button type="button" onclick="Go()">Go</button>
</br>
</br>
<button type="button" onclick="GetDefault()">Get Default</button>
<h3 id="error"></h3>
<h2 id="table_title"></h2>
</br>
<table>
<thead>
<tr>
<th>Lanuage</th>
<th>Total Repos</th>
<th>Avg Forks</th>
<th>Avg Stars</th>
</tr>
</thead>
<tbody id="table_body">
</tbody>
</table>
</body>
</html>