-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
38 lines (35 loc) · 1.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script defer src="./bundle.js"></script>
<link rel="stylesheet" href="./global.css" />
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
<title>Leetcode Progress Watcher</title>
</head>
<body>
<div class="preferences">
<input
placeholder="Show progress in past n days: (Max {{MAX_DAYS}})"
type="number"
id="days_count"
min=1
/>
<select
placeholder="Difficulty Level"
id="difficulty_level"
>
<option value="All">All</option>
<option value="Easy">Easy</option>
<option value="Medium">Medium</option>
<option value="Hard">Hard</option>
</select>
</div>
<div id="counts_table"></div>
<div id="trends_graph"></div>
<div id="source_code"><strong>Source Code:</strong> <a href="https://github.com/adi-g15/leetcode-progress-tracker"
aria-label="Star adi-g15/leetcode-progress-tracker on GitHub">https://github.com/adi-g15/leetcode-progress-tracker</a></div>
</body>
</html>