web/views/pages/bag.ejs

40 lines
1.6 KiB
Text
Raw Normal View History

2021-11-02 06:20:20 +01:00
<!DOCTYPE html>
<html lang="en">
2021-11-09 06:15:06 +01:00
<%- include('../layouts/header.ejs', {title: 'Shopping Bag', state: 'bag'}); %>
2021-11-02 06:20:20 +01:00
<body style="background-color: #1b1c1e;;">
2021-11-09 06:15:06 +01:00
<%- include('../layouts/navbar.ejs', {types: 'v3', title: 'Shopping Bag'}); %>
2021-11-02 06:20:20 +01:00
<br>
<div class="bag">
<div class="row">
2021-11-17 16:36:15 +01:00
<div class="col-lg-8" id="view-bag">
2021-11-02 06:20:20 +01:00
</div>
<div class="col-lg-4">
<div class="summary">
<div class="card">
<div class="card-body">
<div class="row" style="border-bottom: 1px solid white;">
<div class="col-lg-12">
<h3 style="text-align: center;"><b>Order Summary</b></h3>
<br style="display: block;content: ' '; margin: 1.5vw 0; line-height: 1.5vw;">
</div>
</div>
<div class="row justify-content-between">
2021-11-18 07:32:23 +01:00
<p>Estimated Price</p>
2021-11-17 16:36:15 +01:00
<p id='total-price'>-</p>
2021-11-02 06:20:20 +01:00
</div>
<br style="display: block;content: ' '; margin: 1vw 0; line-height: 1vw;">
<a class="btn btn-primary btn-checkout" type="submit" href="checkout">Checkout</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
2021-11-17 16:36:15 +01:00
2021-11-10 06:02:52 +01:00
<%- include('../layouts/footer.ejs', {state: 'bag'}); %>
2021-11-02 06:20:20 +01:00
</body>
</html>