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