11 lines
609 B
PHP
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> |