File tree 1 file changed +29
-12
lines changed
1 file changed +29
-12
lines changed Original file line number Diff line number Diff line change 1
1
<!DOCTYPE html>
2
- < html >
2
+ < html lang ="en ">
3
+
3
4
< 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 >
5
9
< style >
6
10
body {
7
11
display : flex;
8
12
justify-content : center;
9
13
align-items : center;
10
14
height : 100vh ;
11
- margin : 0 ;
12
15
font-family : Arial, sans-serif;
13
16
}
14
17
.container {
15
18
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 ;
20
38
}
21
39
</ style >
22
40
</ head >
23
41
< body >
24
42
< 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 ">
30
47
</ form >
31
48
</ div >
32
49
</ body >
You can’t perform that action at this time.
0 commit comments