aboutsummaryrefslogtreecommitdiffstats
path: root/alphabetlearning/templates/payments/landingpage.html
diff options
context:
space:
mode:
Diffstat (limited to 'alphabetlearning/templates/payments/landingpage.html')
-rw-r--r--alphabetlearning/templates/payments/landingpage.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/alphabetlearning/templates/payments/landingpage.html b/alphabetlearning/templates/payments/landingpage.html
new file mode 100644
index 0000000..9897301
--- /dev/null
+++ b/alphabetlearning/templates/payments/landingpage.html
@@ -0,0 +1,29 @@
+{% extends "base.html" %}
+{% block content %}
+ <div class="container my-5">
+ <div class="row">
+ <h2>Welcome to PyBlackbird - Buy this</h2>
+
+ <section>
+ <div class="product">
+ <div class="description">
+ <h3>{{ product.name }}</h3>
+ <hr/>
+ {% for price in prices %}
+
+ <div>
+ <h5>${{ price.get_display_price }}</h5>
+ <form action="{% url 'payments:create-checkout-session' price.id %}" method="POST">
+ {% csrf_token %}
+ <button type="submit" class="btn btn-primary">Checkout</button>
+ </form>
+ </div>
+
+ {% endfor %}
+ </div>
+ </div>
+ </section>
+
+
+ </div>
+{% endblock content %} \ No newline at end of file