mirror of
https://gitlab.com/nekoya/web.git
synced 2024-11-14 18:36:20 +01:00
40 lines
No EOL
1.6 KiB
Text
40 lines
No EOL
1.6 KiB
Text
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<%- include('../layouts/header.ejs', {title: 'Shopping Bag', state: 'bag'}); %>
|
|
|
|
<body style="background-color: #1b1c1e;;">
|
|
<%- include('../layouts/navbar.ejs', {types: 'v3', title: 'Shopping Bag'}); %>
|
|
<br>
|
|
<div class="bag">
|
|
<div class="row">
|
|
<div class="col-lg-8" id="view-bag">
|
|
</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>Estimated Price</p>
|
|
<p id='total-price'>-</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>
|
|
|
|
<%- include('../layouts/footer.ejs', {state: 'bag'}); %>
|
|
</body>
|
|
</html> |