15 lines
		
	
	
		
			829 B
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			829 B
		
	
	
	
		
			HTML
		
	
	
	
| <div class="flex flex-col items-center space-y-4 md:space-y-0 md:flex-row mt-10 justify-start md:justify-evenly">
 | |
|     {% if not first %}
 | |
|     <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, meta.active - 1)">
 | |
|         Zurück
 | |
|     </div>
 | |
|     {% endif %}
 | |
|     {% if not last %}
 | |
|     <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, meta.active + 1)">
 | |
|         Weiter
 | |
|     </div>
 | |
|     {% else %}
 | |
|     <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>
 | |
|     {% endif %}
 | |
| </div>
 |