-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotification.php
53 lines (48 loc) · 1.65 KB
/
notification.php
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
<?php
$pageName = "Notification";
$pageGroup = "User Profile";
$currentPage = "Notification";
require_once "./includes/header.php";
require_once "./includes/sidebar.php";
?>
<body>
<main id="content">
<!-- BREADCRUM -->
<?php require_once "./includes/breadcrum.php" ?>
<!-- YOUR CONTENT STARTS FROM HERE -->
<section class="my-5">
<body>
<table class="table">
<thead>
<tr>
<th>image</th>
<th>name of user</th>
<th>Desciption</th>
<th>Time</th>
</tr>
</thead>
<tbody>
<tr>
<td><img src="https://via.placeholder.com/50x50" alt="" class="rounded-circle"></td>
<td>
<div class="my-3">
Nasir
</div>
</td>
<td>
<div class="my-3">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
</div>
</td>
<td>
<div class="my-3">
2 minutes ago
</div>
</td>
</tr>
</tbody>
</table>
</section>
</main>
</body>
</html>