2020-02-23 11:01:23 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
2020-04-08 23:08:34 +02:00
|
|
|
{% call text() %}
|
2020-12-19 17:23:19 +01:00
|
|
|
<h1>
|
|
|
|
Your subscription will end on <b>{{ manual_sub.end_at.format("YYYY-MM-DD") }}</b>
|
|
|
|
</h1>
|
2020-04-08 23:08:34 +02:00
|
|
|
{% endcall %}
|
|
|
|
|
|
|
|
{% call text() %}
|
2020-12-19 17:23:19 +01:00
|
|
|
Please contact us at <a href="mailto:hi@simplelogin.io">hi@simplelogin.io</a> to renew your subscription.
|
2020-04-08 23:08:34 +02:00
|
|
|
{% endcall %}
|
|
|
|
|
2020-02-23 11:01:23 +01:00
|
|
|
{{ render_text('Thanks, <br />SimpleLogin Team.') }}
|
|
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|