-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeedback.php
More file actions
37 lines (36 loc) · 810 Bytes
/
feedback.php
File metadata and controls
37 lines (36 loc) · 810 Bytes
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
<?php
$pageName = "Feedback";
$pageGroup = "User Profile";
$currentPage = "Feedback";
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>User name</th>
<th>Desciption</th>
<th>Time</th>
</tr>
</thead>
<tbody>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</body>
</html></section>
</main>
</body>
</html>