PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 5.2
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v5.2
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 / styles / _form-messages.php

_form-messages.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 5.2, at classes/views/styles/_form-messages.php

44 lines 3.3 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 <h4><span><?php esc_html_e( 'Success Messages', 'formidable' ); ?></span></h4>
7 <p class="frm4 frm_first frm_form_field">
8 <label><?php esc_html_e( 'BG color', 'formidable' ); ?></label>
9 <input name="<?php echo esc_attr( $frm_style->get_field_name( 'success_bg_color' ) ); ?>" id="frm_success_bg_color" class="hex" value="<?php echo esc_attr( $style->post_content['success_bg_color'] ); ?>" type="text" <?php do_action( 'frm_style_settings_input_atts', 'success_bg_color' ); ?> />
10 </p>
11 <p class="frm4 frm_form_field">
12 <label><?php esc_html_e( 'Border', 'formidable' ); ?></label>
13 <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'success_border_color' ) ); ?>" id="frm_success_border_color" class="hex" value="<?php echo esc_attr( $style->post_content['success_border_color'] ); ?>" <?php do_action( 'frm_style_settings_input_atts', 'success_border_color' ); ?> />
14 </p>
15 <p class="frm4 frm_end frm_form_field">
16 <label><?php esc_html_e( 'Text', 'formidable' ); ?></label>
17 <input name="<?php echo esc_attr( $frm_style->get_field_name( 'success_text_color' ) ); ?>" id="frm_success_text_color" class="hex" value="<?php echo esc_attr( $style->post_content['success_text_color'] ); ?>" type="text" <?php do_action( 'frm_style_settings_input_atts', 'success_text_color' ); ?> />
18 </p>
19 <p class="frm4 frm_first frm_form_field">
20 <label><?php esc_html_e( 'Size', 'formidable' ); ?></label>
21 <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'success_font_size' ) ); ?>" id="frm_success_font_size" value="<?php echo esc_attr( $style->post_content['success_font_size'] ); ?>" size="3" />
22 </p>
23
24 <h4 class="frm_clear">
25 <span><?php esc_html_e( 'Error Messages', 'formidable' ); ?></span>
26 </h4>
27 <p class="frm4 frm_first frm_form_field">
28 <label><?php esc_html_e( 'BG color', 'formidable' ); ?></label>
29 <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'error_bg' ) ); ?>" id="frm_error_bg" class="hex" value="<?php echo esc_attr( $style->post_content['error_bg'] ); ?>" <?php do_action( 'frm_style_settings_input_atts', 'error_bg' ); ?> />
30 </p>
31 <p class="frm4 frm_form_field">
32 <label><?php esc_html_e( 'Border', 'formidable' ); ?></label>
33 <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'error_border' ) ); ?>" id="frm_error_border" class="hex" value="<?php echo esc_attr( $style->post_content['error_border'] ); ?>" <?php do_action( 'frm_style_settings_input_atts', 'error_border' ); ?> />
34 </p>
35 <p class="frm4 frm_end frm_form_field">
36 <label><?php esc_html_e( 'Text', 'formidable' ); ?></label>
37 <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'error_text' ) ); ?>" id="frm_error_text" class="hex" value="<?php echo esc_attr( $style->post_content['error_text'] ); ?>" <?php do_action( 'frm_style_settings_input_atts', 'error_text' ); ?> />
38 </p>
39
40 <p class="frm4 frm_first frm_form_field">
41 <label><?php esc_html_e( 'Size', 'formidable' ); ?></label>
42 <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'error_font_size' ) ); ?>" id="frm_error_font_size" value="<?php echo esc_attr( $style->post_content['error_font_size'] ); ?>" size="3" />
43 </p>
44