Files
lucent-laravel/front/js/svelte/setup/Index.svelte
T

29 lines
666 B
Svelte
Raw Normal View History

2024-09-06 20:59:56 +03:00
<script>
2026-05-06 23:16:09 +03:00
import Step from "./Step.svelte";
2024-09-06 23:30:12 +03:00
2026-05-06 23:16:09 +03:00
export let channel;
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
</script>
2026-05-06 23:16:09 +03:00
<div
style="text-align: center;background: var(--p20);padding: 20px;color: var(--p90)"
>
<h1>
<a class="text-decoration-none" href={channel.lucentUrl}
>{channel.name ?? "Lucent Setup"}</a
>
</h1>
</div>
<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;">
2026-05-06 23:16:09 +03:00
{#if allSuccess}
<a href="/lucent/register" class="bt">Create the first user</a>
{/if}
2024-09-06 23:30:12 +03:00
</div>
2026-05-06 23:16:09 +03:00
</div>