{% extends "meta.html" %} {% block title %} Update billing period - {{cfg("sr.ht", "site-name")}} {% endblock %} {% block content %}

Thank you for supporting {{cfg("sr.ht", "site-name")}}! {% if current_user.payment_status != PaymentStatus.current %} You will be charged when you click "submit payment", and your plan will be automatically renewed at the end of the term. {% endif %}

Confirm subscription details

{{csrf_token()}}
Payment term
{% if current_user.payment_status == PaymentStatus.current and sub.autorenew %}
Your account is paid and up-to-date. These changes will take effect at the start of your next billing period {{current_user.payment_due | date}}.
{% elif current_user.payment_status == PaymentStatus.current and not sub.autorenew %}
Your subscription was cancelled. If you proceed, your cancellation will be withdrawn and automatic payments will resume at the start of your next billing period {{current_user.payment_due | date}}. You will not be charged until then.
{% endif %}
{% endblock %}