-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathattendance.html
164 lines (152 loc) · 5.05 KB
/
attendance.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Attendance Sheet</title>
<link rel="icon" type="image/png" href="logo.PNG">
<link rel="stylesheet" href="dashboard.css">
<style>
.attendance-container {
margin: 20px auto;
padding: 20px;
width: 80%;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
h1 {
text-align: center;
margin-bottom: 20px;
color: #007BFF;
}
table {
width: 100%;
border-collapse: collapse;
}
table, th, td {
border: 1px solid #ddd;
}
th, td {
padding: 12px;
text-align: center;
}
th {
background-color: #007BFF;
color: white;
}
input[type="checkbox"] {
transform: scale(1.2);
}
.btn-back, .btn-finish {
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
background-color: #007BFF;
color: white;
text-decoration: none;
border-radius: 5px;
text-align: center;
}
.btn-back:hover, .btn-finish:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<div class="attendance-container">
<h1>Attendance Sheet</h1>
<table>
<thead>
<tr>
<th>SR. No</th>
<th>Name of the Student</th>
<th>Roll</th>
<th>Present/Absent</th>
</tr>
</thead>
<tbody>
<!-- 10 students -->
<tr>
<td>1</td>
<td>K Raj Tilak</td>
<td>1001</td>
<td><input type="checkbox" name="attendance1"></td>
</tr>
<tr>
<td>2</td>
<td>MD Riyasat Ali</td>
<td>1002</td>
<td><input type="checkbox" name="attendance2"></td>
</tr>
<tr>
<td>3</td>
<td>Gargee Dash</td>
<td>1003</td>
<td><input type="checkbox" name="attendance3"></td>
</tr>
<tr>
<td>4</td>
<td>Sonali Sahoo</td>
<td>1004</td>
<td><input type="checkbox" name="attendance4"></td>
</tr>
<tr>
<td>5</td>
<td>Ashutosh Sahoo</td>
<td>1005</td>
<td><input type="checkbox" name="attendance5"></td>
</tr>
<tr>
<td>6</td>
<td>Apurba Pal</td>
<td>1006</td>
<td><input type="checkbox" name="attendance6"></td>
</tr>
<tr>
<td>7</td>
<td>Anshuman Nanda</td>
<td>1007</td>
<td><input type="checkbox" name="attendance7"></td>
</tr>
<tr>
<td>8</td>
<td>Bikram Keshari Dash</td>
<td>1008</td>
<td><input type="checkbox" name="attendance8"></td>
</tr>
<tr>
<td>9</td>
<td>Biswajeet Muduli</td>
<td>1009</td>
<td><input type="checkbox" name="attendance9"></td>
</tr>
<tr>
<td>10</td>
<td>Akansha Behera</td>
<td>1010</td>
<td><input type="checkbox" name="attendance10"></td>
</tr>
</tbody>
</table>
<a href="teacher-dashboard.html" class="btn-back">Back to Dashboard</a>
<a href="attendance-summary.html" class="btn-finish" id="finish-button">Finish</a>
</div>
<script>
document.getElementById('finish-button').addEventListener('click', function(event) {
// Prevent default link behavior
event.preventDefault();
// Collect the attendance data
let attendanceData = [];
for (let i = 1; i <= 10; i++) {
const checkbox = document.querySelector(`input[name="attendance${i}"]`);
attendanceData.push(checkbox.checked); // Store true for present, false for absent
}
// Store the attendance data in localStorage
localStorage.setItem('attendanceData', JSON.stringify(attendanceData));
// Redirect to the attendance summary page
window.location.href = "attendance-summary.html";
});
</script>
</body>
</html>