forked from stutitiwari23/Resume-Builder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin-feedback.html
More file actions
86 lines (73 loc) · 1.58 KB
/
admin-feedback.html
File metadata and controls
86 lines (73 loc) · 1.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Admin Feedback Panel</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Reuse existing project styles -->
<link rel="stylesheet" href="css/style.css" />
<style>
.admin-container {
max-width: 1100px;
margin: 60px auto;
padding: 20px;
}
.admin-container h1 {
margin-bottom: 10px;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
th, td {
border: 1px solid #ddd;
padding: 10px;
text-align: left;
font-size: 14px;
vertical-align: top;
}
th {
background-color: #f5f5f5;
}
.status-reviewed {
color: green;
font-weight: bold;
}
.status-pending {
color: #c0392b;
font-weight: bold;
}
button {
padding: 6px 10px;
margin-right: 5px;
cursor: pointer;
border: 1px solid #ccc;
background: #fff;
}
</style>
</head>
<body>
<div class="admin-container">
<h1>Admin Feedback Management</h1>
<p>View and manage feedback submitted by users.</p>
<table id="feedbackTable">
<thead>
<tr>
<th>Name</th>
<th>Email</th>
<th>Feedback</th>
<th>Submitted At</th>
<th>Status</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<!-- Rows will be inserted by JavaScript -->
</tbody>
</table>
</div>
<!-- Admin logic -->
<script src="admin-feedback.js"></script>
</body>
</html>