-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadminview_student.php
More file actions
160 lines (138 loc) · 6.35 KB
/
adminview_student.php
File metadata and controls
160 lines (138 loc) · 6.35 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
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
<?php
include("connect.php");
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>adminview_student</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz" crossorigin="anonymous"></script>
<link rel="icon" href="favicon.png" type="image/icon">
<link href="fontawesome-free-6.4.0-web/css/all.css" rel="stylesheet">
<style>
.link {
border: 1px solid #3ff7f1d7;
border-radius: 3px;
padding: 10px 27px;
background-color: #3ff7f1d7;
width: 200px;
height: 30px;
margin-left: 20px;
text-decoration: none;
font-size: 19px;
font-weight: 550;
color: #000000;
}
.navbar2 {
background: #ffffff;
padding: 0px 20px;
}
.navbar2 a {
/* color: #ba160c; */
color: #000000;
font-size: 18px;
font-weight: 600;
}
.navbar2 a:hover {
color: #ba160c;
}
.navbar2 li {
padding: 0px 6.5px;
}
.dropdown-menu {
border: none;
}
.dropdown-menu .dropdown-item {
background-color: #000000;
color: #ffffff;
}
.parent:hover>ul {
display: block;
position: absolute;
}
@media (min-width:990px) {
.parent:hover>ul {
display: block;
position: absolute;
}
}
.parent {
display: block;
position: relative;
line-height: 35px;
font-size: 12px;
}
</style>
</head>
<body>
<div>
<a class="link" href="add_student.php">Add new Student</a>
</div>
<center>
<h1 style="font-family:algerian;">View Student Record</h1>
</center>
<div class="navbar2">
<nav class="navbar navbar-expand-lg">
<div class="container-fluid">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#menu" aria-controls="menu" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse collapse justify-content-center order-2" id="menu">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="parent">
<a class="nav-link dropdown-toggle " href="#" role="button" data-bs-toggle="dropdown">
Architectural Assistantship
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="Student_AA1.php">1st Year </a></li>
<li><a class="dropdown-item" href="Student_AA2.php">2nd year</a></li>
<li><a class="dropdown-item" href="Student_AA3.php">3rd year</a></li>
</ul>
</li>
<li class="parent">
<a class="nav-link dropdown-toggle " href="#" role="button" data-bs-toggle="dropdown">
Computer Science and Engg.
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="Student_CSE1.php">1st Year </a></li>
<li><a class="dropdown-item" href="Student_CSE2.php">2nd year</a></li>
<li><a class="dropdown-item" href="Student_CSE3.php">3rd year</a></li>
</ul>
</li>
<li class="parent">
<a class="nav-link dropdown-toggle " href="#" role="button" data-bs-toggle="dropdown">
Medical Lab Technology
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="Student_MLT1.php">1st Year </a></li>
<li><a class="dropdown-item" href="Student_MLT2.php">2nd year</a></li>
<li><a class="dropdown-item" href="Student_MLT3.php">3rd year</a></li>
</ul>
</li>
<li class="parent">
<a class="nav-link dropdown-toggle " href="#" role="button" data-bs-toggle="dropdown">
Modern Office Practice
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="Student_MOP1.php">1st Year </a></li>
<li><a class="dropdown-item" href="Student_MOP2.php">2nd year</a></li>
<li><a class="dropdown-item" href="Student_MOP3.php">3rd year</a></li>
</ul>
</li>
<li class="parent">
<a class="nav-link dropdown-toggle " href="#" role="button" data-bs-toggle="dropdown">
Electronics and Comm. Engg.
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="Student_ECE1.php">1st Year </a></li>
<li><a class="dropdown-item" href="Student_ECE2.php">2nd year</a></li>
<li><a class="dropdown-item" href="Student_ECE3.php">3rd year</a></li>
</ul>
</li>
</div>
</div>
</nav>
</div>
</body>
</html>