Files

20 lines
410 B
Svelte
Raw Permalink Normal View History

2024-09-06 20:59:56 +03:00
<script>
import Step from "./Step.svelte"
2024-09-06 23:30:12 +03:00
2024-09-06 20:59:56 +03:00
export let steps;
2024-09-06 23:30:12 +03:00
export let allSuccess = false;
2024-09-06 20:59:56 +03:00
console.log(steps);
</script>
<div class="wrapper-tiny">
2024-09-06 23:30:12 +03:00
{#each steps as step}
<Step {step}></Step>
{/each}
<div style="text-align: center;margin-top: 30px;">
{#if allSuccess}
<a href="/lucent/register" class="bt">Create the first user</a>
{/if}
</div>
2024-09-06 20:59:56 +03:00
</div>