Skip to content

Commit ab9ef73

Browse files
Merge pull request #634 from appwrite/add-billing-note
Add billing note
2 parents 212b742 + 7ee2935 commit ab9ef73

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/routes/console/createOrganization.svelte

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
import { Dependencies } from '$lib/constants';
1010
import { Submit, trackEvent, trackError } from '$lib/actions/analytics';
1111
import { ID } from '@appwrite.io/console';
12+
import Alert from '$lib/components/alert.svelte';
13+
import { isCloud } from '$lib/system';
1214
1315
export let show = false;
1416
@@ -43,6 +45,18 @@
4345
</script>
4446

4547
<Modal title="Create new organization" {error} onSubmit={create} size="big" bind:show>
48+
{#if isCloud}
49+
<Alert type="info">
50+
<svelte:fragment slot="title">Get ready for Appwrite Pro</svelte:fragment>
51+
We will soon introduce the much-anticipated Pro plan. Your account will continue to have
52+
access to <b>one free Starter organization</b>. If you manage more than one
53+
organization, you will need to either upgrade to the Pro plan, transfer your projects to
54+
a Pro organization, or migrate to self-hosting.
55+
<svelte:fragment slot="buttons">
56+
<Button href="https://appwrite.io/pricing" external text>Learn more</Button>
57+
</svelte:fragment>
58+
</Alert>
59+
{/if}
4660
<FormList>
4761
<InputText
4862
id="organization-name"

0 commit comments

Comments
 (0)