11 lines
225 B
HTML
11 lines
225 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block head_title %}Payment Cancelled | {% endblock %}
|
|
|
|
{% block content %}
|
|
<article>
|
|
<h1>Payment declined</h1>
|
|
<p>There was a problem collecting payment.</p>
|
|
</article>
|
|
{% endblock %}
|