mirror of
https://github.com/simple-login/app.git
synced 2024-11-13 07:31:12 +01:00
32 lines
1.5 KiB
HTML
32 lines
1.5 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
{% if name %}
|
|
{{ render_text("Hi " + user.name + ",") }}
|
|
{% else %}
|
|
{{ render_text("Hi,") }}
|
|
{% endif %}
|
|
|
|
{{ render_text("Your subscription will end on " + user.next_bill_date() + ".") }}
|
|
|
|
{{ render_text("When the subscription ends:") }}
|
|
|
|
{{ render_text("- All aliases/domains/directories you have created are <b>kept</b> and continue working normally.") }}
|
|
{{ render_text("- You cannot create new aliases if you exceed the free plan limit, i.e. have more than 15 aliases.") }}
|
|
{{ render_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 15 aliases.") }}
|
|
{{ 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).') }}
|
|
|
|
{{ render_button("Upgrade your account", "https://app.simplelogin.io/dashboard/pricing") }}
|
|
|
|
{{ 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.') }}
|
|
{{ render_text('P.S. If you have any questions or need any help, please don\'t hesitate to reach out. You can simply reply to this email or reach us via Twitter/Github.') }}
|
|
{{ raw_url("https://app.simplelogin.io/dashboard/pricing") }}
|
|
|
|
|
|
{% endblock %}
|
|
|