This commit is contained in:
2022-12-30 16:23:27 +00:00
parent 02776e8478
commit 20da343c54
1304 changed files with 870224 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{% extends "base.html" %}
{% block content %}
{% call text() %}
<h1>Your subscription has been extended!</h1>
{% endcall %}
{% call text() %}
Your payment with cryptocurrency has been successfully processed.
<br />
Your subscription has been extended to
<b>{{ coinbase_subscription.end_at.format("YYYY-MM-DD") }}</b>
{% endcall %}
{% call text() %}
Thank you a lot for your support!
{% endcall %}
{{ render_text('Best,
<br />
SimpleLogin Team.') }}
{% endblock %}

View File

@ -0,0 +1,11 @@
Your subscription has been extended!
Your payment with cryptocurrency has been successfully processed.
Your subscription has been extended to
{{ coinbase_subscription.end_at.format("YYYY-MM-DD") }}
Thank you a lot for your support!
Best,
SimpleLogin team.

View File

@ -0,0 +1,23 @@
{% extends "base.html" %}
{% block content %}
{% call text() %}
<h1>Your account has been upgraded!</h1>
{% endcall %}
{% call text() %}
Your payment with cryptocurrency has been successfully processed.
<br />
Your account has been upgraded to the premium plan until
<b>{{ coinbase_subscription.end_at.format("YYYY-MM-DD") }}</b>
{% endcall %}
{% call text() %}
Thank you a lot for your support!
{% endcall %}
{{ render_text('Best,
<br />
SimpleLogin Team.') }}
{% endblock %}

View File

@ -0,0 +1,11 @@
Your account has been upgraded!
Your payment with cryptocurrency has been successfully processed.
Your account has been upgraded to premium plan until
{{ coinbase_subscription.end_at.format("YYYY-MM-DD") }}
Thank you a lot for your support!
Best,
SimpleLogin team.

View File

@ -0,0 +1,18 @@
{% extends "base.html" %}
{% block content %}
{% call text() %}
<h1>Your subscription is ending soon.</h1>
{% endcall %}
{% call text() %}
Your subscription ends on
<b>{{ coinbase_subscription.end_at.format("YYYY-MM-DD") }}</b>
{% endcall %}
{{ render_button("Extend your subscription", extend_subscription_url) }}
{{ render_text('Best,
<br />
SimpleLogin Team.') }}
{% endblock %}

View File

@ -0,0 +1,7 @@
Your subscription ends on {{ coinbase_subscription.end_at.format("YYYY-MM-DD") }}
You can extend your subscription on
{{ extend_subscription_url }}
Best,
SimpleLogin team.