-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcustomer-products.php
45 lines (41 loc) · 1.95 KB
/
customer-products.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
<?php
require('config.php');
include("session.php");
include("functions.php");
?>
<?php include_once "views/partials/header.html"; ?>
<body>
<section class="bg-theme">
<?php include_once "views/partials/customer-navbar.php"; ?>
<?php include_once "views/partials/menu.html"; ?>
<div class="container">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="#"><span>Home</span></a></li>
<li class="breadcrumb-item"><a href="#"><span>All Products</span></a></li>
</ol>
<div class="d-flex justify-content-between">
<?php include_once "views/partials/sort.php";
$search = $_GET['search-product'] ?? '';
?>
<div class="col-md-9">
<form class="d-lg-flex justify-content-lg-between search-form products-menu rounded">
<span class="d-flex align-items-center fw-bold ms-3">All Products</span>
<div class="d-flex align-items-center search-prod-bar border col-5 rounded-pill">
<input class="form-control" type="search" placeholder="Search..." name="search-product" id="search-product" value="<?php echo $search?>">
<label class="form-label d-flex mb-0" for="search-product">
<button class="btn btn-primary btn-search-prod rounded-pill" type="submit">
<i class="fa fa-search icon-color"></i>
</button>
</label>
</div>
</form>
<div class="d-flex flex-wrap card-products">
<?php
listProducts($con);
?>
</div>
</div>
</div>
</div>
</section>
<?php include_once "views/partials/footer.html"; ?>