| 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 |
|