-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathteacher.html
82 lines (75 loc) · 2.68 KB
/
teacher.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Teacher Dashboard | RFID Attendance System</title>
<link rel="stylesheet" href="styles.css">
<script type = "module" src="teacher.js"></script>
</head>
<body>
<header>
<div class="header-container">
<img src="https://i.ibb.co/Hr5VjpT/iot-removebg-preview.png" alt="RFID Logo">
<h1>Teacher Dashboard</h1>
</div>
</header>
<main id="teacher-section">
<div class="teacher-container">
<h1 style="text-align: center; color: rgb(94, 73, 255);" id = "greeting"></h1><br>
<h2>Class Details</h2>
<table id = "classDetailsTable">
<thead>
<tr>
<th>Class</th>
<th>Date</th>
<th>Start Time</th>
<th>End Time</th>
<th>Attendees Count</th>
</tr>
</thead>
<tbody>
</tbody>
</table><br>
<h2>Attendance Details</h2>
<center><h3>Select a Class</h3></center>
<div class="class-selection">
<select id="class-select">
<!-- <option value="class1">Class 1</option>
<option value="class2">Class 2</option>
<option value="class3">Class 3</option> -->
</select>
</div>
<center>
<label id = "classDetails" style="text-align: center;"></label><br><br>
<label id = "attendanceDetails" style="text-align: center;"></label>
</center>
<table id = "attendanceDetailsTable">
<thead>
<tr>
<th>Student Name</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<!-- <tr>
<td>Vignesh B S</td>
<td><button>Mark Present</button></td>
</tr>
<tr>
<td>Supreet Bhat</td>
<td><button>Mark Present</button></td>
</tr>
<tr>
<td>Srujan N Hiremath</td>
<td><button>Mark Present</button></td>
</tr> -->
</tbody>
</table>
</div>
</main>
<footer>
<p>© 2025 Bangalore Institute of Technology</p>
</footer>
</body>
</html>