40 lines
1.3 KiB
HTML
40 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Levi McLean JS Lab 3</title>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="./style.css">
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Student Performance Analytics Dashboard</h1>
|
|
<input type="text" placeholder="Search By Name" id="nameSearch">
|
|
<label for="minimumGrade">Minimum Grade:</label>
|
|
<input type="range" min="0" max="100" name="minimumGrade" id="minimumGrade">
|
|
<button type="button">Toggle Theme</button>
|
|
|
|
<table id="studentTable">
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Course</th>
|
|
<th>Grade</th>
|
|
<th>Attendance</th>
|
|
<th>Assignment Avg</th>
|
|
<th>Status</th>
|
|
<th>City</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="studentTableBody"></tbody>
|
|
</table>
|
|
<div id="summary">
|
|
<h2>Summary</h2>
|
|
</div>
|
|
<script type="module" src="main.js"></script>
|
|
<script type="module" src="data.js"></script>
|
|
<script type="module" src="analytics.js"></script>
|
|
<script type="module" src="utils.js"></script>
|
|
<script type="module" src="ui.js"></script>
|
|
<script type="module" src="theme.js"></script>
|
|
</body>
|
|
</html> |