PluginProbe
Lasso Lite – Affiliate Link Manager & Product Displays / 109
Lasso Lite – Affiliate Link Manager & Product Displays v109
158 157 155 156 154 153 152 151 150 149 148 trunk 0.9.9 104 105 106 107 108 109 110 111 112 113 114 115 All 57 releases
simple-urls / admin / views / modals / group-delete.php

group-delete.php in Lasso Lite – Affiliate Link Manager & Product Displays 109, at admin/views/modals/group-delete.php

25 lines 597 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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