Skip to content

Commit 711cfc8

Browse files
authored
Update view_attendance.html
1 parent 8b32606 commit 711cfc8

File tree

1 file changed

+29
-12
lines changed

1 file changed

+29
-12
lines changed

view_attendance.html

+29-12
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,49 @@
11
<!DOCTYPE html>
2-
<html>
2+
<html lang="en">
3+
34
<head>
4-
<title>View Student Attendance</title>
5+
<meta charset="UTF-8" />
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8+
<title>View Record</title>
59
<style>
610
body {
711
display: flex;
812
justify-content: center;
913
align-items: center;
1014
height: 100vh;
11-
margin: 0;
1215
font-family: Arial, sans-serif;
1316
}
1417
.container {
1518
text-align: center;
16-
padding: 20px;
17-
border: 1px solid #ccc;
18-
border-radius: 10px;
19-
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
19+
}
20+
form {
21+
margin-top: 20px;
22+
}
23+
input[type="text"] {
24+
padding: 10px;
25+
margin: 5px;
26+
width: 80%;
27+
}
28+
input[type="submit"] {
29+
padding: 10px 20px;
30+
margin: 5px;
31+
background-color: #4CAF50;
32+
color: white;
33+
border: none;
34+
cursor: pointer;
35+
}
36+
input[type="submit"]:hover {
37+
background-color: #45a049;
2038
}
2139
</style>
2240
</head>
2341
<body>
2442
<div class="container">
25-
<h1>View Student Attendance</h1>
26-
<form action="view_attendance.php" method="get">
27-
<label for="roll_no">Roll No:</label><br>
28-
<input type="text" id="roll_no" name="roll_no" required><br><br>
29-
<input type="submit" value="View Attendance">
43+
<h1>View Record</h1>
44+
<form action="view_record.php" method="get">
45+
<input type="text" name="roll_number" placeholder="Roll Number" required>
46+
<input type="submit" value="View">
3047
</form>
3148
</div>
3249
</body>

0 commit comments

Comments
 (0)