-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmy-wishlist.php
78 lines (72 loc) · 2.18 KB
/
my-wishlist.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
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
<?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 = "My Wishlist < {$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 table-hover">
<thead>
<tr>
<th>Thumbnail</th>
<th>Description</th>
<th>Price</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<img src="https://via.placeholder.com/100x100" alt="" />
</td>
<td>
<div class="my-2">
<h6>
<a href="#">White T-Shirt</a>
</h6>
<p class="py-0 my-0">
<a href="#">Men's Wear</a>
</p>
<p class="py-0 my-0">
<a href="#">Aarong</a>
</p>
</div>
</td>
<td>
<div class="mt-4">
<p class="py-0 my-0"><strike>$30.00</strike></p>
<p class="py-0 my-0">$30.00</p>
</div>
</td>
<td>
<form action="" method="post" class="mt-3">
<input type="hidden" name="" />
<a href="#" class="btn btn-outline-primary btn-sm">
<i class="fas fa-eye"></i>
</a>
<button type="submit" class="btn btn-outline-danger btn-sm my-3">
<i class="fas fa-trash-alt"></i>
</button>
</form>
</td>
</tr>
</tbody>
</table>
</section>
</main>
</body>
</html>