2026-01-04 14:00:42 -05:00
<!DOCTYPE html>
< head >
< title > Cancel Subscription - PluralKit Premium< / title >
< link rel = "stylesheet" href = "/static/stylesheet.css" / >
< / head >
< body >
< h2 > PluralKit Premium< / h2 >
{% if subscription.is_cancellable() %}
< h3 > Cancel Subscription< / h3 >
< p > Are you sure you want to cancel subscription < strong > {{ subscription.subscription_id() }}< / strong > ?< / p >
< p > Your subscription will remain active until the end of the current billing period.< / p >
< form action = "/cancel" method = "post" >
< input type = "hidden" name = "csrf_token" value = "{{ csrf_token }}" / >
< input type = "hidden" name = "subscription_id" value = "{{ subscription.subscription_id() }}" / >
< button type = "submit" > Yes, cancel subscription< / button >
< a href = "/" > < button type = "button" > No, go back< / button > < / a >
< / form >
{% else %}
< p > This subscription (< strong > {{ subscription.subscription_id() }}< / strong > ) has already been canceled and will end on < strong > {{ subscription.next_renewal() }}< / strong > .< / p >
< a href = "/" > < button type = "button" > Go back< / button > < / a >
{% endif %}
< br / > < br / >
2026-01-16 13:03:56 -05:00
< span > for assistance please email us at < a href = "mailto:billing@pluralkit.me" > billing@pluralkit.me< / a > < / span >
< br / >
2026-01-16 15:25:02 -05:00
< br / > < a href = "/info/" > pricing/refunds< / a > | < a href = "https://pluralkit.me/terms-of-service/" > terms of service< / a > | < a href = "https://pluralkit.me/privacy/" > privacy policy< / a >
2026-01-16 13:03:56 -05:00
< br / > < a href = "/" > home< / a >
2026-01-04 14:00:42 -05:00
< / body >