34 lines
1.1 KiB
PHP
34 lines
1.1 KiB
PHP
<div class="grid items-center">
|
|
<div class="glass-card w-full max-w-2xl mx-auto p-8 space-y-8">
|
|
<div wire:key="wizard-step-{{ $step }}">
|
|
@if ($step === 1)
|
|
@include('livewire.setup.step-domain')
|
|
@elseif ($step === 2)
|
|
@include('livewire.setup.step-admin')
|
|
@elseif ($step === 3)
|
|
@include('livewire.setup.step-certificate')
|
|
@endif
|
|
</div>
|
|
|
|
<div class="flex items-center justify-between pt-2">
|
|
@if ($step > 1)
|
|
<button type="button" wire:click="prevStep" class="btn-primary/ghost px-4 py-2">
|
|
Zurück
|
|
</button>
|
|
@else
|
|
<span></span>
|
|
@endif
|
|
|
|
@if ($step < 3)
|
|
<button type="button" wire:click="nextStep" class="btn-primary px-6 py-2">
|
|
Weiter
|
|
</button>
|
|
@else
|
|
<button type="button" wire:click="finish" class="btn-primary px-6 py-2">
|
|
Fertig
|
|
</button>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
</div>
|