{% extends 'base.html' %} {% from '_macros.html' import form_field %} {% block title %}Confirm purchase ยท TradeHub{% endblock %} {% block content %}
{# Product summary #}
{{ product.title }}

{{ product.title }}

Sold by {{ product.seller.username }}

${{ '%.2f' % product.price }}
{{ form.hidden_tag() }}
How it works

Your order will be sent to the seller. Once they accept, you'll arrange pickup or delivery directly via in-app chat. Mark the order as complete after the exchange.

Cancel {{ form.submit(class="btn btn-primary btn-lg", style="flex:1;") }}
{% endblock %}