-
Notifications
You must be signed in to change notification settings - Fork 0
/
feedback.php
47 lines (43 loc) · 1.16 KB
/
feedback.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
<?php
require __DIR__ . '/vendor/autoload.php';
if (session_status() === PHP_SESSION_NONE) {
session_start();
}
use App\Auth;
use App\Database;
$db = new Database();
$name = $_SESSION['user']['first_name'] . " " . $_SESSION['user']['last_name'];
$pageName = "Feedback < {$name}";
$pageGroup = "Dashboard";
$currentPage = "Dashoboard";
require __DIR__ . '/components/header.php';
?>
<body>
<?php require __DIR__ . "/components/sidebar/customer.php" ?>
<main id="content" class="bg-body-tertiary" >
<?php require __DIR__ . "/components/navbar/customer.php" ?>
<?php require __DIR__ . "/components/breadcrumb/customer/primary.php" ?>
<!-- YOUR CONTENT STARTS FROM HERE -->
<section class="container-fluid my-5">
<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>
</section>
</main>
</body>
</html>