25 lines
917 B
PHP
25 lines
917 B
PHP
<?php
|
|
// This is the HTML representing the Delete confirmation modal on the Events page
|
|
|
|
?>
|
|
<div id="deleteConfirm" class="modal fade" class="modal" tabindex="-1">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h5 class="modal-title">Delete Confirmation</h5>
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<p><?php echo translate('ConfirmDeleteEvents') ?></p>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button id="delCancelBtn" type="button" class="btn btn-secondary" data-dismiss="modal"><?php echo translate('Cancel') ?></button>
|
|
<button id ="delConfirmBtn" type="button" class="btn btn-danger"><?php echo translate('Delete') ?></button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|