-
Notifications
You must be signed in to change notification settings - Fork 427
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
akshay kashyap
committed
May 1, 2020
1 parent
3700ac0
commit a3c46e3
Showing
3 changed files
with
60 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<!-- Shopping cart section --> | ||
<section id="cart" class="py-3 mb-5"> | ||
<div class="container-fluid w-75"> | ||
<h5 class="font-baloo font-size-20">Shopping Cart</h5> | ||
|
||
<!-- shopping cart items --> | ||
<div class="row"> | ||
<div class="col-sm-9"> | ||
<!-- Empty Cart --> | ||
<div class="row border-top py-3 mt-3"> | ||
<div class="col-sm-12 text-center py-2"> | ||
<img src="./assets/blog/empty_cart.png" alt="Empty Cart" class="img-fluid" style="height: 200px;"> | ||
<p class="font-baloo font-size-16 text-black-50">Empty Cart</p> | ||
</div> | ||
</div> | ||
<!-- .Empty Cart --> | ||
</div> | ||
<!-- subtotal section--> | ||
<div class="col-sm-3"> | ||
<div class="sub-total border text-center mt-2"> | ||
<h6 class="font-size-12 font-rale text-success py-3"><i class="fas fa-check"></i> Your order is eligible for FREE Delivery.</h6> | ||
<div class="border-top py-4"> | ||
<h5 class="font-baloo font-size-20">Subtotal ( <?php echo isset($subTotal) ? count($subTotal) : 0; ?> item): <span class="text-danger">$<span class="text-danger" id="deal-price"><?php echo isset($subTotal) ? $Cart->getSum($subTotal) : 0; ?></span> </span> </h5> | ||
<button type="submit" class="btn btn-warning mt-3">Proceed to Buy</button> | ||
</div> | ||
</div> | ||
</div> | ||
<!-- !subtotal section--> | ||
</div> | ||
<!-- !shopping cart items --> | ||
</div> | ||
</section> | ||
<!-- !Shopping cart section --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<!-- Shopping cart section --> | ||
|
||
<section id="cart" class="py-3 mb-5"> | ||
<div class="container-fluid w-75"> | ||
<h5 class="font-baloo font-size-20">Wishlist</h5> | ||
<!-- shopping cart items --> | ||
<div class="row"> | ||
<div class="col-sm-9"> | ||
<!-- Empty Cart --> | ||
<div class="row border-top py-3 mt-3"> | ||
<div class="col-sm-12 text-center py-2"> | ||
<img src="./assets/blog/empty_cart.png" alt="Empty Cart" class="img-fluid" style="height: 200px;"> | ||
<p class="font-baloo font-size-16 text-black-50">Empty Wishlist</p> | ||
</div> | ||
</div> | ||
<!-- .Empty Cart --> | ||
</div> | ||
</div> | ||
<!-- !shopping cart items --> | ||
</div> | ||
</section> | ||
<!-- !Shopping cart section --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters