Skip to content

Commit

Permalink
Merge pull request #634 from appwrite/add-billing-note
Browse files Browse the repository at this point in the history
Add billing note
  • Loading branch information
christyjacob4 authored Nov 30, 2023
2 parents 212b742 + 7ee2935 commit ab9ef73
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/routes/console/createOrganization.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
import { Dependencies } from '$lib/constants';
import { Submit, trackEvent, trackError } from '$lib/actions/analytics';
import { ID } from '@appwrite.io/console';
import Alert from '$lib/components/alert.svelte';
import { isCloud } from '$lib/system';
export let show = false;
Expand Down Expand Up @@ -43,6 +45,18 @@
</script>

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

0 comments on commit ab9ef73

Please sign in to comment.