-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (40 loc) · 1.83 KB
/
index.html
File metadata and controls
44 lines (40 loc) · 1.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Grading Team Dashboard</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>🏆 Grading Team Dashboard</h1>
<div class="stats-simple">
<span class="label">Total Team Progress:</span>
<span id="total-count" class="value">0 Fields</span>
</div>
<div id="last-update" style="text-align: center; font-size: 0.8rem; color: #888; margin-top: -15px; margin-bottom: 20px;">
Loading timestamp...
</div>
<div class="controls">
<input type="text" id="searchInput" placeholder="Search by name..." oninput="filterLeaderboard()">
<div class="custom-select-wrapper">
<div class="select-box" onclick="toggleDropdown(event)">
<span id="select-label">Worksheets + 1 more</span>
<span class="arrow">▼</span>
</div>
<div id="checkboxes" class="options-container">
<label><input type="checkbox" value="Worksheet" onchange="updateFilters()" checked> Worksheets</label>
<label><input type="checkbox" value="Code Review" onchange="updateFilters()"> Code Reviews</label>
<label><input type="checkbox" value="Quiz" onchange="updateFilters()"> Quizzes</label>
<label><input type="checkbox" value="Create Project" onchange="updateFilters()" checked> Create Projects</label>
</div>
</div>
</div>
<div id="leaderboard">
<p class="no-results">Loading grader data...</p>
</div>
</div>
<script src="scripts.js"></script>
</body>
</html>