-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathattendancepage-stud.html
More file actions
58 lines (50 loc) · 2.07 KB
/
Copy pathattendancepage-stud.html
File metadata and controls
58 lines (50 loc) · 2.07 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Student Attendance - EduHub</title>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Work+Sans:wght@400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style-att-stu.css">
<!-- Font Awesome for moon icon -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<header class="header">
<div class="logo">EduHub</div>
<div class="user-profile">
<div class="avatar"></div>
<span class="user-name">Alex Chen</span>
</div>
</header>
<label class="dark-mode-switch">
<input type="checkbox" id="darkModeToggle">
<span class="slider"></span>
<i class="fas fa-moon" style="color: black; font-size: 1.3em; margin-left: 8px;"></i>
</label>
<main class="container">
<h1 class="page-title">Today's Attendance</h1>
<p class="page-subtitle">Track your class attendance and stay on top of your schedule</p>
<section class="daily-classes">
<h2 class="section-title">Daily Classes</h2>
<div class="classes-timeline" id="classesTimeline">
<!-- Classes will be populated by JavaScript -->
</div>
</section>
<section class="attendance-section">
<h2 class="section-title">Attendance Overview</h2>
<div class="attendance-bar" id="attendanceBar">
<!-- Attendance segments will be populated by JavaScript -->
</div>
<div class="attendance-stats" id="attendanceStats">
<!-- Stats will be populated by JavaScript -->
</div>
</section>
<section class="class-details" id="classDetails">
<!-- Class details will be populated by JavaScript -->
</section>
</main>
<script src="script-att-stu.js"></script>
</body>
</body>
</html>