{% extends 'base.html.twig' %} {% block title %} {{ parent() }} - Checkout {% endblock %} {% set frequency = { "onetime": "one-time purchase", "monthly": "monthly subscription", } %} {% block content %}
{% if settings("checkout_allow_gifting") %} {% include msystem("checkout_gifting") %} {% endif %}
Cart
{% if product.image %}
...
{% endif %}
{{ product.name }}

{{ (product.price / 100)|format_currency("USD") }} {{ frequency[product.frequency] }}

Add a coupon code
Accept our Terms of Service
By clicking the button below, you acknowledge that you have read and agree to our Terms of Service and Privacy Policy. If you do not agree to these terms, do not proceed with your purchase and close this webpage.
Provide an email address
To continue with your purchase, we need your email address.
We will never sell your email address. View how we use your data.
{% if settings("collect_billing_information") %}
Create your billing account
{# tooltip #}
To complete your purchase, we need to create a billing account.
Please provide your billing information.
We will never sell your billing information. View how we use your data.
{% endif %}
Enter payment information
You can remove this card at any time.
We will never sell your card information. View how we use your data.
Confirm payment information
This card will be used to complete your purchase.
•••• •••• •••• 1234
MM/YY
We will never sell your card information. View how we use your data.
{% include msystem("stripe") %} {% endblock %}