{% extends "base.html" %} {% block title %}Checkout - Golden Uniforms{% endblock %} {% block content %}

Checkout

Customer Information
{{ form.hidden_tag() }}
{{ form.name.label(class="form-label") }} {{ form.name(class="form-control") }} {% if form.name.errors %}
{% for error in form.name.errors %} {{ error }} {% endfor %}
{% endif %}
{{ form.phone.label(class="form-label") }} {{ form.phone(class="form-control") }} {% if form.phone.errors %}
{% for error in form.phone.errors %} {{ error }} {% endfor %}
{% endif %}
{{ form.email.label(class="form-label") }} {{ form.email(class="form-control") }} {% if form.email.errors %}
{% for error in form.email.errors %} {{ error }} {% endfor %}
{% endif %}
WhatsApp Checkout: After clicking "Finish Order", you will be redirected to WhatsApp to complete your order with our team.
Order Summary
{% for item in cart_items %}
{{ item.product.name }}
Qty: {{ item.quantity }}
KES {{ "%.2f"|format(item.get_total_price()) }}
{% endfor %}
Subtotal: KES {{ "%.2f"|format(total) }}
Shipping: FREE

Total: KES {{ "%.2f"|format(total) }}
Secure Checkout
Your information is safe with us
{% endblock %}