-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathadminpage.html
54 lines (51 loc) · 1.16 KB
/
adminpage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Feedback Details</title>
<link rel="stylesheet" href="css/styles2.css" />
</head>
<body>
<form action="php/logout.php" method="POST">
<div class="logout">
<input type="submit" value="Log Out" name="logout" />
</div>
</form>
<table border="1" id="students-table">
<tr>
<th>Year</th>
<th>Sem</th>
<th>Date</th>
<th>Branch</th>
<th>Section</th>
<th>Subject</th>
<th>Ques1</th>
<th>Ques-2i</th>
<th>Ques-2ii</th>
<th>Ques-2iii</th>
<th>Ques-2iv</th>
<th>Ques-2v</th>
<th>Ques3</th>
<th>Ques4</th>
<th>Remarks</th>
</tr>
<tr>
<td>year</td>
<td>sem</td>
<td>date</td>
<td>branch</td>
<td>section</td>
<td>subject</td>
<td>ques1</td>
<td>ques2i</td>
<td>ques2ii</td>
<td>ques2iii</td>
<td>ques2iv</td>
<td>ques2v</td>
<td>ques3</td>
<td>ques4</td>
<td>remarks</td>
</tr>
</table>
</body>
</html>