This commit is contained in:
Nicolai Ort 2025-03-23 00:53:46 +01:00
parent 52b8db4a5a
commit 2aa8c4178a
Signed by: niggl
GPG Key ID: 13AFA55AF62F269F

View File

@ -26,6 +26,11 @@
progress: 75, progress: 75,
showback: true, showback: true,
}, },
SIGNUP_SUCCESS: {
name: "Done",
progress: 100,
showback: false,
},
SIGNIN: { SIGNIN: {
name: "Signin", name: "Signin",
progress: 50, progress: 50,
@ -148,6 +153,20 @@
currentStep = Steps.SIGNUP_MAIL_ACCEPT; currentStep = Steps.SIGNUP_MAIL_ACCEPT;
}}>Continue</Button }}>Continue</Button
> >
{:else if currentStep.name == Steps.SIGNUP_MAIL_ACCEPT.name}
<Button
variant="default"
class="w-full"
on:click={() => {
currentStep = Steps.SIGNUP_SUCCESS;
}}>Continue</Button
>
{:else if currentStep.name == Steps.SIGNUP_SUCCESS.name}
<p class="text-center">
Alright that's it, just walk up to the next available person and tell them your name.<br>
You can scan this qr code to login to our selfservice.
</p>
TODO:
{:else if currentStep.name == Steps.SIGNIN.name} {:else if currentStep.name == Steps.SIGNIN.name}
<div class="grid gap-2"> <div class="grid gap-2">
<Button <Button