bulk-confirm-popup.php
3 years ago
common-confirm-popup.php
3 years ago
elements_style.php
3 years ago
filters.php
3 years ago
navbar.php
3 years ago
pagination.php
4 years ago
purchase-history-filter.php
4 years ago
search-filter.php
4 years ago
bulk-confirm-popup.php
32 lines
| 1 | <div class="tutor-modal tutor-bulk-modal-disabled" id="tutor-bulk-confirm-popup"> |
| 2 | <div class="tutor-modal-overlay"></div> |
| 3 | <div class="tutor-modal-window"> |
| 4 | <div class="tutor-modal-content tutor-modal-content-white"> |
| 5 | <button class="tutor-iconic-btn tutor-modal-close-o" data-tutor-modal-close> |
| 6 | <span class="tutor-icon-times" area-hidden="true"></span> |
| 7 | </button> |
| 8 | |
| 9 | <div class="tutor-modal-body tutor-text-center"> |
| 10 | <div class="tutor-my-44"> |
| 11 | <div class="tutor-fs-4 tutor-fw-medium tutor-color-black tutor-mb-12"><?php esc_html_e( 'Before You Proceed!', 'tutor' ); ?></div> |
| 12 | <div class="tutor-fs-6 tutor-color-muted"><?php esc_html_e( 'Are you sure you would like to perform this action? We suggest you proceed with caution.', 'tutor' ); ?></div> |
| 13 | |
| 14 | <form id="tutor-common-confirmation-form-2" class="tutor-mt-40 tutor-mb-0" method="POST"> |
| 15 | <?php tutor_nonce_field(); ?> |
| 16 | <input type="hidden" name="id"> |
| 17 | <input type="hidden" name="action"> |
| 18 | <div class="tutor-d-flex tutor-justify-center"> |
| 19 | <button class="tutor-btn tutor-btn-outline-primary" data-tutor-modal-close> |
| 20 | <?php esc_html_e( 'Cancel', 'tutor' ); ?> |
| 21 | </button> |
| 22 | <button id="tutor-confirm-bulk-action" class="tutor-btn tutor-btn-primary tutor-ml-16" data-tutor-modal-submit> |
| 23 | <?php esc_html_e( "Yes, I'am Sure", 'tutor' ); ?> |
| 24 | </button> |
| 25 | </div> |
| 26 | </form> |
| 27 | </div> |
| 28 | </div> |
| 29 | </div> |
| 30 | </div> |
| 31 | </div> |
| 32 |