{% extends "meta.html" %} {% set sub = user.subscription %} {% block title %} Cancel your subscription - {{cfg("sr.ht", "site-name")}} meta {% endblock %} {% block content %}
{{csrf_token()}}

Cancel your subscription

{% if user.payment_status == PaymentStatus.DELINQUENT %}

Your account is currently past due. Cancelling your subscription will convert your account to a non-paying account and we will stop attempting to collect your renewal payment.

{% elif user.payment_status == PaymentStatus.CURRENT %} {% if sub.status == SubscriptionStatus.ACTIVE %}

Your subscription is currently paid and up-to-date until the next automatic payment scheduled for {{user.payment_due.strftime("%B %d, %Y")}}. The next automatic payment will be cancelled and you will retain access to paid services until the end of the current payment term.

{% elif sub.status == SubscriptionStatus.SETTLEMENT %}
Your subscription payment was charged {{sub.updated | date}} and is awaiting settlement. Cancelling your subscription renewal will not cancel the pending payment. If you want to request a refund for this payment, please contact support.

Your next automatic payment is scheduled for {{user.payment_due.strftime("%B %d, %Y")}}. If you cancel your subscription, this payment will be cancelled, and you will retain access to paid services until this date.

{% endif %} {% if sub.product.retired %}
Notice: Your paid subscription is no longer offered to new customers at your current price. If you cancel your subscription, you will have to pay the new price when you sign up again.
{% endif %} {% endif %} Go back {{icon('caret-right')}}
{% endblock %}