diff --git a/website/src/routes/coin/create/+page.svelte b/website/src/routes/coin/create/+page.svelte index cdf0d67..e6b5dc7 100644 --- a/website/src/routes/coin/create/+page.svelte +++ b/website/src/routes/coin/create/+page.svelte @@ -12,6 +12,7 @@ import { CREATION_FEE, INITIAL_LIQUIDITY, TOTAL_COST } from '$lib/data/constants'; import { toast } from 'svelte-sonner'; import SEO from '$lib/components/self/SEO.svelte'; + import SignInConfirmDialog from '$lib/components/self/SignInConfirmDialog.svelte'; let name = $state(''); let symbol = $state(''); @@ -112,217 +113,241 @@ isSubmitting = false; } } + + let shouldSignIn = $state(false); - + +
-
- -
- - - Coin Details - - -
- -
- -
-
+ {/if}