checkout-success.html 610 B

1234567891011121314151617
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <main class="x xdc md-xdr md-xw">
  4. <header class="w100 copy-h tac">
  5. <h1>Order checkout</h1>
  6. </header>
  7. <section class="w100 bdb-dark-red pt4-25 pr0-85 pb4-25 pl0-85 copy ff-mono">
  8. <div class="mw-680px mla mra">
  9. <p class="pb1">Thanks for your order.</p>
  10. <p class="pb1">An email confirmation has been sent to <em>{{ data.customer_email }}</em>. It might take a few minutes to reach your inbox.</p>
  11. <p><span><strong>Order number</strong></span> <span>{{ data.order_id }}</span></p>
  12. </div>
  13. </section>
  14. </main>
  15. {% endblock %}