aboutsummaryrefslogtreecommitdiffstats
path: root/alphabetlearning/templates/payments/cart_sidepanel.html
diff options
context:
space:
mode:
Diffstat (limited to 'alphabetlearning/templates/payments/cart_sidepanel.html')
-rw-r--r--alphabetlearning/templates/payments/cart_sidepanel.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/alphabetlearning/templates/payments/cart_sidepanel.html b/alphabetlearning/templates/payments/cart_sidepanel.html
new file mode 100644
index 0000000..7742c9a
--- /dev/null
+++ b/alphabetlearning/templates/payments/cart_sidepanel.html
@@ -0,0 +1,28 @@
+<div class="p-2 border border-2 rounded rounded-2 border-light-subtle">
+ <div class="p-1 d-flex justify-content-between">
+ <div>
+ <strong>Subtotal:</strong>
+ </div>
+ <div>
+ &#163;{{ cart_total }} 10.24
+ </div>
+ </div>
+ <div class="p-1 d-flex justify-content-between">
+ <div>
+ <strong>Shipping and handling:</strong>
+ </div>
+ <div>
+ <p class="text-end">There is nothing to say here</p>
+ </div>
+ </div>
+ <hr>
+ <div class="my-1">
+ <p class="p-1 text-secondary">After payment, links to your download will be generated.
+ <a class="p-1 text-sm" href="#">Help</a>
+ </p>
+
+ </div>
+ <div class="d-grid gap-2 mx-auto col-11">
+ <button class="btn btn-primary btn-lg">Checkout now</button>
+ </div>
+</div>