2023-01-21 14:15:36 -07:00

24 lines
653 B
HTML

{% extends "base.html" %}
{% load static %}
{% block head_title %}Checkout | {% endblock %}
{% block content %}
<article>
<header>
<h1>Checkout</h1>
</header>
<section>
<h3>Shipping Address</h3>
<form class="checkout__address-form" action="" method="POST">
{% csrf_token %}
{{form.as_p}}
<p>
<input type="submit" value="Continue">
</p>
</form>
<p>We validate addresses with USPS, if you are having issues please contact us at <a href="mailto:support@ptcoffee.com">support@ptcoffee.com</a>.</p>
</section>
</article>
{% endblock %}