web/views/pages/bag.ejs

53 lines
2.1 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">
<div class="col-lg-8">
2021-11-12 04:53:15 +01:00
<%- include('../layouts/bagcard.ejs') %>
<%- include('../layouts/bagcard.ejs') %>
<%- include('../layouts/bagcard.ejs') %>
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">
<p>Sub Total</p>
<p>1.999.999,00</p>
</div>
<div class="row justify-content-between" style="border-bottom: 1px solid white;">
<p>Shipping</p>
<p>-</p>
</div>
<div class="row justify-content-between">
<p>Estimate</p>
<p>1.999.999,00</p>
</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-10 06:02:52 +01:00
<%- include('../layouts/footer.ejs', {state: 'bag'}); %>
2021-11-02 06:20:20 +01:00
</body>
</html>