{% extends "meta.html" %} {% block title %} Complete subscription payment - {{cfg("sr.ht", "site-name")}} {% endblock %} {% block scripts %} {% endblock %} {% block content %}

Payment details

{{product.name}}

Includes access to all features.

{% if sub.interval == PaymentInterval.monthly %} {{sym}}{{"{:.02f}".format(intent.totalDue / 100)}}/month {% else %} {{sym}}{{"{:.02f}".format(intent.totalDue / 100)}}/year {% endif %}
{% if intent.taxRate %}
Subtotal {{sym}}{{"{:.02f}".format(sub.subtotal / 100)}}
VAT ({{"{:.1f}".format(intent.taxRate * 100)}}%) {{sym}}{{"{:.02f}".format(intent.taxDue / 100)}}
Total due {{sym}}{{"{:.02f}".format(intent.totalDue / 100)}}
{% endif %}
{{icon('exclamation-circle')}} Important notices
  • At the end of your selected term, your renewal payment will be automatically charged to the payment method you have on file. You can cancel automatic renewal at any time.
  • In accordance with European regulations, your billing records are retained for up to 7 years, even if you delete your account.
  • See the terms of service for more details.
{% if sub.user.paymentStatus == "DELINQUENT" %}
Notice: Your account is past due. You will immediately be charged the outstanding balance of {{sym}}{{"{:.0f}".format(intent.totalDue / 100)}} once you have provided your payment details.
{% endif %} {% endblock %}