| 1 |
<?php |
| 2 |
/** |
| 3 |
* Modal |
| 4 |
* |
| 5 |
* @package Modal |
| 6 |
*/ |
| 7 |
|
| 8 |
// phpcs:ignore |
| 9 |
?> |
| 10 |
|
| 11 |
<!-- DELETE CONFIRMATION --> |
| 12 |
<div class="modal fade" id="group-delete" tabindex="-1" role="dialog"> |
| 13 |
<div class="modal-dialog" role="document"> |
| 14 |
<div class="modal-content text-center shadow p-5 rounded"> |
| 15 |
<h2>Delete This Group?</h2> |
| 16 |
<p>If deleted, you won't be able to get it back.</p> |
| 17 |
|
| 18 |
<div> |
| 19 |
<button type="button" class="btn black white-bg black-border mr-3" data-dismiss="modal">Cancel</button> |
| 20 |
<button type="button" id="group_delete_btn" class="btn red-bg mx-1">Delete</button> |
| 21 |
</div> |
| 22 |
</div> |
| 23 |
</div> |
| 24 |
</div> |
| 25 |
|