11 lines
231 B
HTML
11 lines
231 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<h2>Payment</h2>
|
|
<p>Click the button below to pay and access your document.</p>
|
|
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
<button type="submit">Pay</button>
|
|
</form>
|
|
{% endblock %} |