PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.9
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.9
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 / form-templates / modals / name-your-form-modal.php

name-your-form-modal.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 6.9, at classes/views/form-templates/modals/name-your-form-modal.php

39 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Form Templates - Name your form modal.
4 *
5 * @package Formidable
6 */
7
8 if ( ! defined( 'ABSPATH' ) ) {
9 die( 'You are not allowed to call this page directly.' );
10 }
11 ?>
12 <div id="frm-name-your-form-modal" class="frm_wrap frm-form-templates-modal-item">
13 <div class="frm_modal_top">
14 <div class="frm-modal-title">
15 <h2><?php esc_html_e( 'Name your form', 'formidable' ); ?></h2>
16 </div>
17 </div>
18
19 <div class="inside frm_grid_container frm-fields frm-px-md frm-mt-xs frm-m-0 frm-py-0">
20 <p><?php esc_html_e( 'Before we save this form, do you want to name it first?', 'formidable' ); ?></p>
21
22 <div class="frm_form_field">
23 <label for="frm_new_form_name_input">
24 <?php esc_html_e( 'Form Name (Optional)', 'formidable' ); ?>
25 </label>
26 <input type="text" name="frm_new_form_name_input" id="frm_new_form_name_input" placeholder="<?php esc_html_e( 'Enter your form name', 'formidable' ); ?>" />
27 </div>
28 </div>
29
30 <div class="frm_modal_footer frm-flex-box frm-justify-end frm-pt-sm frm-pb-md">
31 <a href="#" id="frm-cancel-rename-form-button" class="button button-secondary frm-button-secondary frm-modal-close dismiss" role="button">
32 <?php esc_html_e( 'Cancel', 'formidable' ); ?>
33 </a>
34 <a href="#" id="frm-save-form-name-button" class="button button-primary frm-button-primary" role="button">
35 <?php esc_html_e( 'Save', 'formidable' ); ?>
36 </a>
37 </div>
38 </div>
39