-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages.html
42 lines (42 loc) · 1.51 KB
/
messages.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Messages</title>
<link rel="stylesheet" href="src/dashboard.css">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
</head>
<body>
<p class="adminTitle">Incoming message</p>
<div class="navbar">
<a href="dashboard.html" ><div class="log">
<h2>LA</h2>
</div></a>
<a href="blogs.html" class="btn1"> <i class="fa fa-newspaper-o" aria-hidden="true"></i><span> Manage blogs </span></a><br/>
<a href="messages.html" class="btn2"> <i class="fa fa-envelope" aria-hidden="true"></i> <span>Messages</span> </a><br/>
<a href="index.html" class="btn3" ><i class="fa fa-home" aria-hidden="true"></i> <span>Home </span></a><br/>
<a href="login.html" class="btn4"><i class="fa fa-sign-out" aria-hidden="true"></i> <span>Log out </span> </a></div>
<div class="notifications">
<div class="blogs-written">
<table id="submissionTable">
<thead>
<tr>
<th>No</th>
<th>Names</th>
<th>Email</th>
<th>Message</th>
<th colspan="2">Actions</th>
</tr>
</thead>
</table>
</div>
</div>
</div>
</div>
</div>
<script src="messages.js"></script>
</body>
</html>