wi-events/components/eventform/navigation.htm

20 lines
1.0 KiB
HTML
Raw Permalink Normal View History

2023-01-07 17:42:46 +01:00
<div class="flex flex-col items-center space-y-4 md:space-y-0 md:flex-row mt-10 justify-start md:justify-evenly">
2023-01-07 16:48:33 +01:00
{% if not first %}
2023-02-12 21:30:52 +01:00
<div class="bg-primary hover:bg-emerald-600 px-4 py-2 shadow text-teal-200 leading-none cursor-pointer rounded-lg" @click.prevent="slideTo($event, active - 1)">
2023-01-07 16:10:18 +01:00
Zurück
2023-01-07 16:39:02 +01:00
</div>
2023-01-07 16:48:33 +01:00
{% endif %}
{% if not last %}
2023-02-12 21:30:52 +01:00
<div class="bg-primary hover:bg-emerald-600 px-4 py-2 shadow text-teal-200 leading-none cursor-pointer rounded-lg" @click.prevent="slideTo($event, active + 1)">
2023-01-07 16:10:18 +01:00
Weiter
2023-01-07 16:39:02 +01:00
</div>
2023-01-07 16:48:33 +01:00
{% else %}
2023-03-23 00:19:31 +01:00
<button type="submit" class="relative flex items-center bg-primary hover:bg-emerald-600 px-8 py-2 shadow text-teal-200 leading-none cursor-pointer rounded-lg">
<div x-show="loading" class="absolute left-1">
<div class="spinner"><div class="bounce1"></div><div class="bounce2"></div><div></div></div>
</div>
{% if p %} Anmeldung aktualisieren {% else %} Anmeldung absenden {% endif %}
</button>
2023-01-07 16:48:33 +01:00
{% endif %}
2023-01-07 16:10:18 +01:00
</div>