{% extends "default.html" %} {% block title %}Billing{% endblock %} {% block head %}{% endblock %} {% block default_content %}

Billing

{% if sub.cancelled %}

You are on the {{ sub.plan_name() }} plan.
You have canceled your subscription and it will end on {{ sub.next_bill_date.strftime("%Y-%m-%d") }}

If you change your mind you can subscribe again to SimpleLogin but please note that this will be a completely new subscription and your payment method will be charged immediately.
The period left in the current subscription isn't taken into account.
Re-subscribe

{% else %}

You are on the {{ sub.plan_name() }} plan. Thank you very much for supporting SimpleLogin. 🙌
The next billing cycle starts at {{ sub.next_bill_date.strftime("%Y-%m-%d") }}.

Click here to update billing information on Paddle, our payment partner:
Update billing information

Change Plan

You can change the plan at any moment.
Please note that the new billing cycle starts instantly i.e. you will be charged immediately the annual fee ($30) when switching from monthly plan or vice-versa without pro rata computation .
To change the plan you can also cancel the current one and subscribe a new one by the end of this plan. {% if sub.plan == PlanEnum.yearly %}
{% else %}
{% endif %}

Cancel subscription

Don't want to protect your inbox anymore?
Cancel subscription
{% endif %}
{% endblock %} {% block script %} {% endblock %}