2020-03-05 09:35:20 +01:00
{% extends "base.html" %}
{% block content %}
2021-01-25 21:25:15 +01:00
{{ render_text("Hi") }}
2020-03-05 09:35:20 +01:00
2020-04-19 10:54:05 +02:00
{{ render_text("Your subscription will end on " + next_bill_date + ".") }}
2020-03-05 09:35:20 +01:00
{{ render_text("When the subscription ends:") }}
{{ render_text("- All aliases/domains/directories you have created are < b > kept< / b > and continue working normally.") }}
2020-04-08 23:08:34 +02:00
{% call text() %}
- You cannot create new aliases if you exceed the free plan limit, i.e. have more than {{MAX_NB_EMAIL_FREE_PLAN}} aliases.
{% endcall %}
{% call text() %}
- As features like < b > catch-all< / b > or < b > directory< / b > allow you to create aliases on-the-fly,
those aliases cannot be automatically created if you have more than {{MAX_NB_EMAIL_FREE_PLAN}} aliases.
{% endcall %}
2020-03-05 09:35:20 +01:00
{{ render_text("- You cannot add new domain or directory.") }}
{{ render_text('You can upgrade today to continue using all these Premium features (and much more coming).') }}
2020-08-14 16:23:29 +02:00
{{ render_button("Upgrade your account", URL ~ "/dashboard/pricing") }}
2020-03-05 09:35:20 +01:00
{{ render_text('Regardless of your choice, we want to say thank you for trying SimpleLogin. We know the product
requires an investment of your time, and we appreciate you giving us a chance.') }}
{{ render_text('Thanks, < br / > SimpleLogin Team.') }}
2022-03-22 12:23:16 +01:00
{{ render_text('P.S. If you have any questions or need any help, please don\'t hesitate to < a href = "https://app.simplelogin.io/dashboard/support" > reach out< / a > ') }}
2020-08-14 16:23:29 +02:00
{{ raw_url(URL ~ "/dashboard/pricing") }}
2020-03-05 09:35:20 +01:00
{% endblock %}