-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
41 lines (36 loc) · 1.05 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
<!DOCTYPE <html>
<head>
<title>Fantasy Moneyball</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="main.css"></link>
</head>
<body>
<header>
<h1>League Dashboard</h1>
</header>
<div class='wrapper'>
<nav>
<div>
Date:
<select id="date" onChange="refreshJSONData()"></select>
</div>
<div>
Stats:
<select id="stat-type" onChange="refreshJSONData()">
<option selected value="a">Batting & Pitching</option>
<option value="b">Batting</option>
<option value="p">Pitching</option>
</select>
</div>
</nav>
<table id="main"></table>
</div>
<footer>
<div>
Last update: <date id="timestamp"></date>
<button onclick="refreshJSONData()">Refresh</button>
</div>
</footer>
<script type="text/javascript" src="main.js"></script>
</body>
</html>