Warn users about canceling patreon memberships

This commit is contained in:
2023-09-19 17:35:21 +02:00
parent c9754fafec
commit ee74ba1357
2 changed files with 19 additions and 1 deletions

View File

@@ -64,7 +64,6 @@ let pages = [
path: "/user/prepaid", path: "/user/prepaid",
title: "Prepaid", title: "Prepaid",
icon: "receipt_long", icon: "receipt_long",
hidden: window.user.subscription.type === "patreon",
subpages: [ subpages: [
{ {
path: "/user/prepaid/deposit", path: "/user/prepaid/deposit",

View File

@@ -64,6 +64,25 @@ onMount(() => {
</p> </p>
</div> </div>
{/if} {/if}
{#if window.user.subscription.type === "patreon"}
<div class="highlight_yellow">
<p>
Activating a prepaid subscription will not cancel your active
Patreon subscription. Go to Patreon's
<a
href="https://www.patreon.com/settings/memberships">memberships
page</a> to end your subscription there.
</p>
<p>
If you enable a prepaid plan here your Patreon subscription will
be overridden. If you wish to go back to your Patreon plan use
the <a href="/user/home">Link Patreon subscription</a> button on
the home page to link your Patreon account back to pixeldrain.
</p>
</div>
{/if}
<h2>Manage subscription</h2> <h2>Manage subscription</h2>
<p> <p>
Current account balance: <Euro amount={window.user.balance_micro_eur}></Euro> Current account balance: <Euro amount={window.user.balance_micro_eur}></Euro>