{% extends "meta.html" %} {% import "invoice.html" as invoice %} {% block title %} Choose a plan - {{cfg("sr.ht", "site-name")}} {% endblock %} {% block content %}
{% if message %}
{{message}}
{% endif %}

On {{cfg("sr.ht", "site-name")}}, all plans have access to the same features and in the same quantity. You should pick the plan which best matches your financial needs and best represents the level of investment you have in {{cfg("sr.ht", "site-name")}}. If you require financial aid to use {{cfg("sr.ht", "site-name")}}, please send us an email explaining your circumstances and we'll do our best to accommodate your needs.

{% for product in products %} {% set price = product.prices["USD"] %}
{{csrf_token()}}

{{product.name}}

Includes access to all features.

${{"{:.0f}".format(price.amount / 100)}}/month or ${{"{:.0f}".format(price.amount * 10 / 100)}}/year
{% endfor %}

All prices are shown in US dollars.

Notice: Continuing to the next page will execute non-free JavaScript from our payment processor, Stripe. If you are uncomfortable with this, please reach out to us to discuss other options. For more information, consult our privacy policy.

You can cancel or change your plan at any time. Any questions? Review our billing & payments FAQ.

{% if len(invoices) != 0 %}

Past invoices

{% for i in invoices %} {{ invoice.render(i) }} {% endfor %}
{% endif %} {% endblock %}