PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.7
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.7
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
formidable / classes / views / shared / confirm-overlay.php

confirm-overlay.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 6.7, at classes/views/shared/confirm-overlay.php

31 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) {
3 die( 'You are not allowed to call this page directly.' );
4 }
5 ?>
6 <div id="frm_confirm_modal" class="frm_hidden frm-modal frm-info-modal">
7 <div class="metabox-holder">
8 <div class="postbox">
9 <a href="#" class="dismiss" title="<?php esc_attr_e( 'Dismiss this message', 'formidable' ); ?>">
10 <?php FrmAppHelper::icon_by_class( 'frmfont frm_close_icon', array( 'aria-label' => 'Dismiss' ) ); ?>
11 </a>
12 <div class="inside">
13 <div class="cta-inside frm-flex-col frm-items-center">
14 <p class="frm-confirm-msg">
15 <?php esc_html_e( 'Are you sure?', 'formidable' ); ?>
16 </p>
17
18 <div class="frm-flex-box frm-gap-sm frm-justify-center">
19 <a href="#" class="button button-secondary frm-button-secondary dismiss">
20 <?php esc_html_e( 'Cancel', 'formidable' ); ?>
21 </a>
22 <a href="#" id="frm-confirmed-click" class="button button-primary frm-button-primary dismiss">
23 <?php esc_html_e( 'Confirm', 'formidable' ); ?>
24 </a>
25 </div>
26 </div>
27 </div>
28 </div>
29 </div>
30 </div>
31