-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathfeedbacks.html
186 lines (167 loc) · 5.32 KB
/
feedbacks.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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>NACOSS ADMIN | HOME</title>
<meta name="keywords" content="" />
<meta name="description" content="" />
<link href="styles.css" rel="stylesheet" type="text/css" />
<script src="lib/jquery-1.4.2.js" type="text/javascript"></script>
<script src="lib/js-func.js" type="text/javascript"></script>
<script src="lib/jquery.jcarousel.js" type="text/javascript"></script>
<style>
input[type=text] {
width: 60%;
padding: 15px 22px;
margin: 10px 5px;
box-sizing: border-box;
border: 4px solid black;
border-radius: 5px;
}
input[type=password] {
width: 60%;
padding: 15px 22px;
margin: 10px 5px;
box-sizing: border-box;
border: 4px solid black;
border-radius: 5px;
}
textarea {
width: 60%;
padding: 15px 22px;
margin: 10px 5px;
box-sizing: border-box;
border: 4px solid black;
border-radius: 5px;
}
select {
width: 60%;
padding: 15px 22px;
margin: 10px 5px;
box-sizing: border-box;
border: 4px solid black;
border-radius: 5px;
}
input[type=button], input[type=reset], input[type=submit] {
background-color: darkblue;
border: none;
color: white;
padding: 18px 36px;
text-decoration: none;
margin: 5px 4px;
cursor: pointer;
}
table {
border-collapse: collapse;
width:100%;
margin-top:-12%;
}
th {
border: 1px solid black;
width:21%;
height:100%;
text-align:center;
}
td {
border: 1px solid black;
width:21%;
height:100%;
text-align:center;
}
</style>
</head>
<body>
<div id="bg">
<div id="logo">
<img src="images/nacoss_logo.png" height="70%" width="5%" style="border-radius:50%;"/>
<a href="#">NACOSS IBBUL</a>
<h2><a href="#">Networking The World</a></h2></div>
<div id="main">
<!-- header begins -->
<div id="header">
<!-- Navigation -->
<div id="navigation">
<ul>
<li class="first"><a href="admin.html">View Students</a></li>
<li><a href="managegallery.html">Manage Gallery</a></li>
<li><a href="manageexcos.html">Manage Excos</a></li>
<li><a href="managenoticeboard.html">Manage Notice Board</a></li>
<li><a href="feedbacks.html">Feedbacks</a></li>
<li><a href="index.html">Logout</a></li>
</ul>
</div>
<!-- End Navigation -->
<!-- Slider -->
<center>
<h1 style="color:blue;"><b>MANAGE FEEDBACKS</b></h1>
<!-- End Slider -->
</div>
<!-- header ends -->
<!-- content begins -->
<div id="content_bg">
<center>
<table>
<thead>
<th>FULL NAME</th>
<th>MATRIC NUMBER</th>
<th>LEVEL</th>
<th>MESSAGE</th>
<th>REPLY</th>
</thead>
</table><br><br>
<input type="submit" onclick="myFunction1()" value="SEND FEEDBACK"/>
<script>
function myFunction1() {
alert("PLATFORM NOT READY YET!");
}
</script>
</center>
</div>
</div><div class="clearall"></div>
</div><div class="clearall"></div>
</div>
<!-- content ends -->
<!-- footer begins -->
<div id="footer">
<div id="footer_top">
<div id="footer_column1">
<div class="footer_text">
</div>
</div>
<div id="footer_column2">
<h3>Contact Us On</h3>
<div class="footer_text">
<div class="foot_pad">
<div class="link1"><a href="#">E-Mail</a></div>
<div class="link2"><a href="#">Facebook</a></div>
<div class="link3"><a href="#">RSS Feed</a></div>
<div class="link4"><a href="#">Twitter</a></div>
</div>
</div>
</div>
<div id="footer_column3">
<h3>OUR TEAM</h3>
<div class="footer_text">
<div class="foot_pad">
<ul class="ls">
<li><a href="#">MUHAMMAD ABDULLAHI</a></li>
<li><a href="#">USMAN HALIRU</a></li>
<li><a href="#">GARBA UMAR</a></li>
<li><a href="#">YAKUBU EZRA</a></li>
<li><a href="#">ABDULLAHI ABUBAKAR SADIQ</a></li>
<li><a href="#">HADI IBRAHIM</a></li>
<li><a href="#">YAKUBU MUAZU ALLAWA</a></li>
<li><a href="#">ABDULLAHI MAIMUNAT</a></li>
</ul>
</div>
</div>
</div>
<div class="clear"></div>
</div>
<div id="footer_bot">
<p>Copyright 2019. Group 8<!-- end --></p>
</div></div>
<!-- footer ends -->
</div>
</body>
</html>