-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmy-wishlist.php
68 lines (64 loc) · 1.8 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
<?php
$pageName = "My wishlist";
$pageGroup = "User Profile";
$currentPage = "My wishlist";
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">
<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>