This is a fully interactive Svelte form component using Svelte's reactivity system for validation.
{#if showSuccess}
Success! Form submitted successfully! The secret is: dumbledore
{/if}
{#if showModal}
Red Herring Modal
This is a red herring modal instead of submitting the form.
In a real application, this might contain additional options or information.
{/if}
`;
// Create and mount the Svelte component
new Svelte.Component({
target: document.getElementById('svelte-form-root'),
props: {},
hydrate: false
});