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-01-07 17:51:26 +01:00
|
|
|
<button type="submit" class="bg-primary hover:bg-emerald-600 px-4 py-2 shadow text-teal-200 leading-none cursor-pointer rounded-lg">{% 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>
|