2025-02-14 20:50:54 +01:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
|
|
|
|
|
|
{% block content %}
|
2025-06-09 13:48:34 +02:00
|
|
|
<div class="confirmed">
|
|
|
|
|
<div class="confirmation-card">
|
|
|
|
|
<h2 class="title-org">Payment</h2>
|
|
|
|
|
<p class="info-p">
|
|
|
|
|
Click the button below to pay and access your document.
|
|
|
|
|
</p>
|
2025-02-17 20:36:59 +01:00
|
|
|
<form method="post">
|
|
|
|
|
{% csrf_token %}
|
2025-06-09 13:48:34 +02:00
|
|
|
<button class="btn-primary-orn" type="submit">Pay</button>
|
2025-02-17 20:36:59 +01:00
|
|
|
</form>
|
2025-06-09 13:48:34 +02:00
|
|
|
</div>
|
2025-02-17 20:36:59 +01:00
|
|
|
</div>
|
2025-06-09 13:48:34 +02:00
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
nav = document.querySelector('nav');
|
|
|
|
|
confirmed = document.querySelector('.confirmed');
|
|
|
|
|
confirmed.style.height = `calc(100vh - ${nav.offsetHeight}px)`;
|
|
|
|
|
</script>
|
|
|
|
|
|
2025-02-14 20:50:54 +01:00
|
|
|
{% endblock %}
|