mirror of
https://github.com/simple-login/app.git
synced 2024-11-01 03:21:01 +01:00
046748c443
* Update pre-commit * Upgrade djlint, remove flake8 and add pylint * Reformat with new djlint version * Run pre-commit on CI * Use only python3.10 on CI * Reformat files with pre-commit * Run pre-commit against all files * Reformat * Added global excludes * Added pre-commit to the contributing file * Set python 3.9 as default * Set language version to python3 Co-authored-by: Adrià Casajús <adria.casajus@proton.ch> Co-authored-by: Carlos Quintana <carlos.quintana@proton.ch>
25 lines
895 B
HTML
25 lines
895 B
HTML
{% extends "default.html" %}
|
|
|
|
{% set active_page = "dashboard" %}
|
|
{% block title %}Extend Subscription{% endblock %}
|
|
{% block default_content %}
|
|
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<h1 class="h2">Extend Subscription</h1>
|
|
<p>Your subscription is expired on {{ coinbase_subscription.end_at.format("YYYY-MM-DD") }}</p>
|
|
<div>
|
|
<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>
|
|
</div>
|
|
<div class="mt-2">
|
|
Your subscription will be extended when the payment is confirmed and we'll send you a confirmation email.
|
|
<br />
|
|
Please note that it can take up to 1h for processing a cryptocurrency payment.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|