-
Notifications
You must be signed in to change notification settings - Fork 0
/
points.html
90 lines (84 loc) · 2.84 KB
/
points.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html>
<head>
<title>Japanese vocabulary quiz</title>
<link rel="icon" type="image/x-icon" href="/images/favicon.png" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/foundation.min.css"
crossorigin="anonymous"
/>
<link rel="stylesheet" type="text/css" href="css/foundation.css" />
</head>
<body>
<!-- Start Top Bar -->
<div class="top-bar">
<div class="top-bar-left">
<ul class="menu">
<li class="menu-text">Japanese vocabulary quiz</li>
<li><a href="index.html">The quiz</a></li>
<li><a href="settings.html">Settings</a></li>
<li class="points" style="display: none;">
<a href="#">
<span id="completeCounter" class="label secondary">0% complete</span>
<span id="userLevel" class="label primary">Level 0</span>
</a>
</li>
</ul>
</div>
</div>
<!-- End Top Bar -->
<div class="callout primary">
<div class="grid-container text-center">
<h1>Learning progress</h1>
</div>
</div>
<div class="grid-container section">
<div>
<h4>By word index</h4>
<div>
<table id="byIndexTable" class="stack">
<thead>
<tr>
<th width="200">Index range</th>
<th width="100">% progress</th>
<th width="100">% words completed</th>
</tr>
</thead>
<tbody><tr><td>Loading</td></tr></tbody>
</table>
</div>
</div>
</div>
<div class="grid-container section">
<div>
<h4>By level</h4>
<div>
<table id="byLevelTable" class="stack">
<thead>
<tr>
<th width="200">Level</th>
<th width="100">% progress</th>
<th width="100">% words completed</th>
</tr>
</thead>
<tbody><tr><td>Loading</td></tr></tbody>
</table>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/foundation.min.js"
crossorigin="anonymous"
></script>
<script src="https://storage.ko-fi.com/cdn/scripts/overlay-widget.js"></script>
<script src="css/foundation.js"></script>
<script src="js/points.js" type="module"></script>
<script>
$(document).foundation();
</script>
</body>
</html>