-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (33 loc) · 1014 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
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>JS Frameworks Dashboard</title>
<link rel="stylesheet" type="text/css" href="./style.css">
</head>
<body>
<div id="app">
<form id="graph-selection-form">
<label>Show: </label>
<select id="stat-selector">
<option value="participation">Weekly commits</option>
<option value="comments">Comment age</option>
<option value="pulls">Pull request age</option>
</select>
<label>Sort by: </label>
<select id="sort-selector">
<option value="median">median value</option>
<option value="max">max value</option>
</select>
<label>in order of: </label>
<select id="order-selector">
<option value="desc">descending</option>
<option value="asc">ascending</option>
</select>
</form>
<h4 id="description"></h4>
<div id="graph-list"></div>
</div>
<script type="text/javascript" src="./dist/index.js"></script>
</body>
</html>