2022-06-29 11:28:26 +02:00
|
|
|
{% extends "default.html" %}
|
2020-12-13 19:13:26 +01:00
|
|
|
|
|
|
|
{% set active_page = "dashboard" %}
|
2022-06-29 11:28:26 +02:00
|
|
|
{% block title %}Extend Subscription{% endblock %}
|
2020-12-13 19:13:26 +01:00
|
|
|
{% block default_content %}
|
2022-06-29 11:28:26 +02:00
|
|
|
|
2020-12-13 19:13:26 +01:00
|
|
|
<div class="card">
|
|
|
|
<div class="card-body">
|
|
|
|
<h1 class="h2">Extend Subscription</h1>
|
2022-07-04 16:01:04 +02:00
|
|
|
<p>Your subscription is expired on {{ coinbase_subscription.end_at.format("YYYY-MM-DD") }}</p>
|
2020-12-13 19:13:26 +01:00
|
|
|
<div>
|
2022-06-29 11:28:26 +02:00
|
|
|
<a class="buy-with-crypto"
|
|
|
|
data-custom="{{ current_user.id }}"
|
|
|
|
href="{{ coinbase_url }}">Extend for 1 year - $30</a>
|
|
|
|
<script src="https://commerce.coinbase.com/v1/checkout.js?version=201807"></script>
|
2020-12-13 19:13:26 +01:00
|
|
|
</div>
|
|
|
|
<div class="mt-2">
|
2022-06-29 11:28:26 +02:00
|
|
|
Your subscription will be extended when the payment is confirmed and we'll send you a confirmation email.
|
|
|
|
<br />
|
2020-12-13 19:13:26 +01:00
|
|
|
Please note that it can take up to 1h for processing a cryptocurrency payment.
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|