23 lines
717 B
Twig
23 lines
717 B
Twig
{% extends 'htmx_modal.html.twig' %}
|
|
|
|
{% block title %}Sicher?{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="pb-8">
|
|
Möchtest du den Buchungsvorgang wirklich abbrechen?
|
|
</div>
|
|
<div class="flex flex-col space-y-4 md:flex-row md:space-y-0 justify-between">
|
|
<button type="button"
|
|
hx-post="{{ path('app_booking_cancel') }}"
|
|
hx-target="body"
|
|
class="button button--primary">
|
|
Ja, Buchung abbrechen
|
|
</button>
|
|
<button type="button"
|
|
{{ stimulus_action('modal', 'close') }}
|
|
class="button button--secondary">
|
|
Nein, Buchung abschließen
|
|
</button>
|
|
</div>
|
|
{% endblock %}
|