-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (53 loc) · 1.82 KB
/
index.html
File metadata and controls
64 lines (53 loc) · 1.82 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<html>
<head>
<title>Sleeper Draft Recap</title>
<link rel="stylesheet" href="css/styles.css">
<link href="https://fonts.googleapis.com/css?family=Fjalla+One|Noto+Sans:400,700" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.3/Chart.bundle.min.js"></script>
<script defer src="https://use.fontawesome.com/releases/v5.6.3/js/all.js" integrity="sha384-EIHISlAOj4zgYieurP0SdoiBYfGJKkgWedPHH4jCzpCXLmzVsw1ouK59MuUtP4a1" crossorigin="anonymous"></script>
<script src="adp-2018-dynasty.json"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<header class="row">
<div class="inner">
<h1 class="site-title">Sleeper Draft Recap</h1>
</div>
</header>
<main>
<div class="row">
<div class="inner">
<form id="draft-id-form">
<label for="draft-id">Draft ID</label>
<input type="text" id="draft-id" name="draft-id" value="334144315779461120" disabled />
<input type="submit" id="draft-submit" value="Go" />
</form>
<p>**Currently cannot change draft ID</p>
<p>
Examples:
<ul>
<li>Startup Dynasty 2018: 334144315779461120</li>
<li>Rookie 2019: 387312461386117120</li>
<li>Redraft 2019: 454662721728671744</li>
</ul>
</p>
<div id="errors"></div>
</div>
</div>
<div id="content" class="row">
<div class="inner">
<div id="picks">
<h2>Draft Picks</h2>
</div>
<div id="player-name-length">
<h2>Owners w/ Longest Player Names</h2>
</div>
<div id="player-exp">
<h2>Owners w/ Most Experienced Players</h2>
</div>
</div>
</div>
</main>
<script src="js/main.js"></script>
</body>
</html>