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

Cancel your subscription

{% if user.paymentStatus == 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.paymentStatus == PaymentStatus.current %} {% if sub.status == SubscriptionStatus.ACTIVE %}

Your subscription is currently paid and up-to-date until the next automatic payment scheduled for {{user.paymentDue.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.paymentDue.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 %} {% endif %} Go back {{icon('caret-right')}}
{% endblock %}