2020-12-13 19:18:58 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
{% call text() %}
|
2022-06-29 11:28:26 +02:00
|
|
|
<h1>Your subscription is ending soon.</h1>
|
|
|
|
{% endcall %}
|
2022-07-11 12:06:15 +02:00
|
|
|
|
2022-06-29 11:28:26 +02:00
|
|
|
{% call text() %}
|
|
|
|
Your subscription ends on
|
|
|
|
<b>{{ coinbase_subscription.end_at.format("YYYY-MM-DD") }}</b>
|
|
|
|
{% endcall %}
|
2022-07-11 12:06:15 +02:00
|
|
|
|
2022-06-29 11:28:26 +02:00
|
|
|
{{ render_button("Extend your subscription", extend_subscription_url) }}
|
|
|
|
{{ render_text('Best,
|
|
|
|
<br />
|
|
|
|
SimpleLogin Team.') }}
|
2020-12-13 19:18:58 +01:00
|
|
|
{% endblock %}
|