diff --git a/src/routes/private/creator/steps/StepOverview.svelte b/src/routes/private/creator/steps/StepOverview.svelte index ed4350b..34cb497 100644 --- a/src/routes/private/creator/steps/StepOverview.svelte +++ b/src/routes/private/creator/steps/StepOverview.svelte @@ -1,43 +1,62 @@ -
-

Event Overview

- +
+

Event Overview

+
-
-

Email Preview

-
Subject: {subject}
-
-
{body}
-
+
+

Email Preview

+
Subject: {subject}
+
+ +
{body}
+
-
-

Participants ({participants.length})

-
    - {#each participants.slice(0, 10) as p} -
  • - {p.name} {p.surname} - - {p.email} -
  • - {/each} -
-

Note: Only the first 10 participants are shown.

+
+

Participants ({participants.length})

+
    + {#each participants.slice(0, 10) as p} +
  • + {p.name} {p.surname} + + {p.email} +
  • + {/each} +
+

Note: Only the first 10 participants are shown.

\ No newline at end of file + Generate QR codes and send + + +
+ {#if !new_event?.name} +

Please provide an event name before proceeding.

+ {/if} + {#if !participants?.length} +

Please add at least one participant before proceeding.

+ {/if} + {#if !subject} +

Please provide an email subject before proceeding.

+ {/if} + {#if !body} +

Please provide an email body before proceeding.

+ {/if} +