Server Address : 2a02:4780:a:760:0:37cc:13e2:3
Web Server : LiteSpeed
Uname : Linux uk-fast-web660.main-hosting.eu 5.14.0-570.55.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Oct 21 05:27:51 EDT 2025 x86_64
PHP Version : 7.4.33
<?php include_once "./includes/header.php";?>
<!-- Start Hero Section -->
<div class="hero">
<div class="container">
<div class="row justify-content-between">
<div class="col-lg-5">
<div class="intro-excerpt">
<h1>Cart</h1>
</div>
</div>
<div class="col-lg-7">
</div>
</div>
</div>
</div>
<!-- End Hero Section -->
<div class="untree_co-section before-footer-section">
<div class="container">
<div class="row mb-5">
<form class="col-md-12" method="post">
<div class="site-blocks-table">
<table class="table">
<thead>
<tr>
<th class="product-thumbnail">Image</th>
<th class="product-name">Product</th>
<th class="product-price">Price</th>
<th class="product-quantity">Quantity</th>
<th class="product-total">Total</th>
<th class="product-remove">Remove</th>
</tr>
</thead>
<tbody>
<tr>
<td class="product-thumbnail">
<img src="images/product-1.png" alt="Image" class="img-fluid">
</td>
<td class="product-name">
<h2 class="h5 text-black">Product 1</h2>
</td>
<td>$49.00</td>
<td>
<div class="input-group mb-3 d-flex align-items-center quantity-container" style="max-width: 120px;">
<div class="input-group-prepend">
<button class="btn btn-outline-black decrease" type="button">−</button>
</div>
<input type="text" class="form-control text-center quantity-amount" value="1" placeholder="" aria-label="Example text with button addon" aria-describedby="button-addon1">
<div class="input-group-append">
<button class="btn btn-outline-black increase" type="button">+</button>
</div>
</div>
</td>
<td>$49.00</td>
<td><a href="#" class="btn btn-black btn-sm">X</a></td>
</tr>
<tr>
<td class="product-thumbnail">
<img src="images/product-2.png" alt="Image" class="img-fluid">
</td>
<td class="product-name">
<h2 class="h5 text-black">Product 2</h2>
</td>
<td>$49.00</td>
<td>
<div class="input-group mb-3 d-flex align-items-center quantity-container" style="max-width: 120px;">
<div class="input-group-prepend">
<button class="btn btn-outline-black decrease" type="button">−</button>
</div>
<input type="text" class="form-control text-center quantity-amount" value="1" placeholder="" aria-label="Example text with button addon" aria-describedby="button-addon1">
<div class="input-group-append">
<button class="btn btn-outline-black increase" type="button">+</button>
</div>
</div>
</td>
<td>$49.00</td>
<td><a href="#" class="btn btn-black btn-sm">X</a></td>
</tr>
</tbody>
</table>
</div>
</form>
</div>
<div class="row">
<div class="col-md-6">
<div class="row mb-5">
<div class="col-md-6 mb-3 mb-md-0">
<button class="btn btn-black btn-sm btn-block">Update Cart</button>
</div>
<div class="col-md-6">
<button class="btn btn-outline-black btn-sm btn-block">Continue Shopping</button>
</div>
</div>
<div class="row">
<div class="col-md-12">
<label class="text-black h4" for="coupon">Coupon</label>
<p>Enter your coupon code if you have one.</p>
</div>
<div class="col-md-8 mb-3 mb-md-0">
<input type="text" class="form-control py-3" id="coupon" placeholder="Coupon Code">
</div>
<div class="col-md-4">
<button class="btn btn-black">Apply Coupon</button>
</div>
</div>
</div>
<div class="col-md-6 pl-5">
<div class="row justify-content-end">
<div class="col-md-7">
<div class="row">
<div class="col-md-12 text-right border-bottom mb-5">
<h3 class="text-black h4 text-uppercase">Cart Totals</h3>
</div>
</div>
<div class="row mb-3">
<div class="col-md-6">
<span class="text-black">Subtotal</span>
</div>
<div class="col-md-6 text-right">
<strong class="text-black">$230.00</strong>
</div>
</div>
<div class="row mb-5">
<div class="col-md-6">
<span class="text-black">Total</span>
</div>
<div class="col-md-6 text-right">
<strong class="text-black">$230.00</strong>
</div>
</div>
<div class="row">
<div class="col-md-12">
<button class="btn btn-black btn-lg py-3 btn-block" onclick="window.location='checkout.php'">Proceed To Checkout</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php include_once "./includes/footer.php";?>