dienstplan/resources/views/shared/modals/confirmDeletion.blade.php
2017-09-13 19:02:20 +02:00

11 lines
609 B
PHP

<div class="modal" id="confirmDeletionModal" tabindex="-1" role="dialog" aria-labelledby="confirmDeletionLabel" aria-hidden="true">
<div class="modal-content">
<h4 id="confirmDeletionLabel">Löschen bestätigen</h4>
<span>Möchtest du <strong id="identifier"></strong> wirklich löschen?</span>
</div>
<div class="modal-footer">
<a class="modal-action modal-close waves-effect waves-red btn-flat">Abbrechen</a>
<a class="modal-action modal-close waves-effect waves-red btn-flat" data-token="{{ csrf_token() }}" id="confirmDeletionButton">Löschen</a>
</div>
</div>