{% extends "base.html" %} {% load static %} {% block title %}Checkout ยท {{ SITE_NAME }}{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Checkout

Total: {{ total }}

{% if user.is_authenticated %}

Signed in as {{ user.email }}. Cards stay on Stripe; we never store card numbers. Edit profile

{% else %}

Have an account? Sign in to prefill shipping and save cards on Stripe. Or create one.

{% endif %}
{% csrf_token %}

{% endblock %} {% block extra_js %} {% endblock %}