2024-11-18 17:09:27 +01:00
|
|
|
<script>
|
2025-05-15 17:00:20 +02:00
|
|
|
import Checkout from "layout/checkout/Checkout.svelte";
|
2025-03-27 15:38:59 +01:00
|
|
|
import LoginRegister from "login/LoginRegister.svelte";
|
|
|
|
import Euro from "util/Euro.svelte";
|
2024-11-18 17:09:27 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
{#if window.user.username !== ""}
|
|
|
|
<div class="page_content">
|
|
|
|
<section>
|
|
|
|
{#if window.user.subscription.type === "patreon"}
|
|
|
|
<p>
|
|
|
|
You already have a Patreon subscription active. You cannot use
|
|
|
|
Prepaid while that subscription is active.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
{:else if window.user.subscription.type === "prepaid"}
|
|
|
|
<p>
|
|
|
|
You already have a Prepaid subscription active. Your account
|
|
|
|
balance is <Euro amount={window.user.balance_micro_eur}/>. Use
|
|
|
|
the form below to top up your balance.
|
|
|
|
</p>
|
2025-05-15 17:00:20 +02:00
|
|
|
<Checkout/>
|
2024-11-18 17:09:27 +01:00
|
|
|
{:else}
|
|
|
|
<p>
|
|
|
|
You are currently logged in as '{window.user.username}'. Use the
|
|
|
|
form below to activate prepaid on this account.
|
|
|
|
</p>
|
2025-05-15 17:00:20 +02:00
|
|
|
<Checkout/>
|
2024-11-18 17:09:27 +01:00
|
|
|
{/if}
|
|
|
|
</section>
|
|
|
|
</div>
|
|
|
|
{:else}
|
|
|
|
<LoginRegister/>
|
|
|
|
{/if}
|
|
|
|
|
|
|
|
<style>
|
|
|
|
.page_content {
|
|
|
|
margin-top: 16px;
|
|
|
|
margin-bottom: 16px;
|
|
|
|
}
|
|
|
|
</style>
|