PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 5.0
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v5.0
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 5.0, at classes/views/shared/confirm-overlay.php

29 lines 1016 B
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 settings-lite-cta frm-inline-modal">
7 <div class="metabox-holder">
8 <div class="postbox">
9 <a href="#" class="dismiss alignright" 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 frmcenter">
14 <p class="frm-confirm-msg">
15 <?php esc_html_e( 'Are you sure?', 'formidable' ); ?>
16 </p>
17 <br/>
18 <a href="#" class="button button-secondary frm-button-secondary dismiss" style="margin:0 20px;">
19 <?php esc_html_e( 'Cancel', 'formidable' ); ?>
20 </a>
21 <a href="#" id="frm-confirmed-click" class="button button-primary frm-button-primary dismiss">
22 <?php esc_html_e( 'Confirm', 'formidable' ); ?>
23 </a>
24 </div>
25 </div>
26 </div>
27 </div>
28 </div>
29