File "_sample_form.php"
Full path: /home/bud/public_html/swamp/Response/wp-admin/wp-content/plugins/formidable/classes/views/styles/_sample_form.php
File size: 4.9 KB
MIME-type: text/x-php
Charset: utf-8
<?php
if ( ! defined( 'ABSPATH' ) ) {
die( 'You are not allowed to call this page directly.' );
}
?>
<h2 class="frm-h2">
<?php esc_html_e( 'Style a Sample Form', 'formidable' ); ?>
</h2>
<p class="howto">
<?php esc_html_e( 'Use the options in the sidebar to customize the style of your forms. Any changes made here will affect any forms that are using this style.', 'formidable' ); ?>
</p>
<div class="frm_forms with_frm_style frm_style_<?php echo esc_attr( $style->post_name ); ?> <?php echo esc_attr( FrmAppHelper::pro_is_installed() ? 'frm_pro_form' : 'frm_lite_form' ); ?>">
<div class="frm-show-form">
<?php $pos_class = 'frm_pos_container frm_' . ( $style->post_content['position'] == 'none' ? 'top' : ( $style->post_content['position'] == 'no_label' ? 'none' : $style->post_content['position'] ) ) . '_container'; ?>
<div class="frm_form_fields frm_sample_form">
<fieldset>
<h3 class="frm_form_title"><?php esc_html_e( 'Form Title', 'formidable' ); ?></h3>
<div class="frm_description"><p><?php esc_html_e( 'This is an example form description for styling purposes.', 'formidable' ); ?></p></div>
<div class="frm_fields_container">
<div class="frm_form_field frm_half frm_first form-field <?php echo esc_attr( $pos_class ); ?>">
<label class="frm_primary_label"><?php esc_html_e( 'Text field', 'formidable' ); ?> <span class="frm_required">*</span></label>
<input type="text" value="<?php esc_attr_e( 'This is sample text', 'formidable' ); ?>"/>
<div class="frm_description"><?php esc_html_e( 'A field with a description', 'formidable' ); ?></div>
</div>
<div class="frm_form_field form-field frm_half <?php echo esc_attr( $pos_class ); ?>">
<label for="field_wq7w5e" class="frm_primary_label"><?php esc_html_e( 'Drop-down Select', 'formidable' ); ?></label>
<select name="item_meta[1028]" id="field_wq7w5e" >
<option value=""> </option>
<option value=""><?php esc_html_e( 'Option 1', 'formidable' ); ?></option>
</select>
</div>
<div class="frm_form_field form-field frm_third frm_first frm_blank_field <?php echo esc_attr( $pos_class ); ?>">
<label class="frm_primary_label"><?php esc_html_e( 'Text field with error', 'formidable' ); ?> <span class="frm_required">*</span></label>
<input type="text" value="<?php esc_attr_e( 'This is sample text', 'formidable' ); ?>"/>
<div class="frm_error"><?php echo esc_html( $frm_settings->blank_msg ); ?></div>
</div>
<div class="frm_form_field frm_third form-field frm_focus_field <?php echo esc_attr( $pos_class ); ?>">
<label class="frm_primary_label"><?php esc_html_e( 'Text field in active state', 'formidable' ); ?> <span class="frm_required">*</span></label>
<input type="text" value="<?php esc_attr_e( 'Active state will be seen when the field is clicked', 'formidable' ); ?>" />
</div>
<div class="frm_form_field frm_third form-field <?php echo esc_attr( $pos_class ); ?>">
<label class="frm_primary_label"><?php esc_html_e( 'Read-only field', 'formidable' ); ?></label>
<input type="text" value="<?php esc_attr_e( 'This field is not editable', 'formidable' ); ?>" disabled="disabled" />
</div>
<div class="frm_form_field form-field frm_half frm_first <?php echo esc_attr( $pos_class ); ?> frm_lite_style">
<label class="frm_primary_label"><?php esc_html_e( 'Text Area', 'formidable' ); ?></label>
<textarea></textarea>
<div class="frm_description"><?php esc_html_e( 'Another field with a description', 'formidable' ); ?></div>
</div>
<div class="frm_form_field form-field frm_fourth <?php echo esc_attr( $pos_class ); ?> frm_lite_style">
<label class="frm_primary_label"><?php esc_html_e( 'Radio Buttons', 'formidable' ); ?></label>
<div class="frm_opt_container">
<div class="frm_radio"><label><input type="radio" /><?php esc_html_e( 'Option 1', 'formidable' ); ?></label></div>
<div class="frm_radio"><label><input type="radio" /><?php esc_html_e( 'Option 2', 'formidable' ); ?></label></div>
</div>
</div>
<div class="frm_form_field form-field frm_fourth <?php echo esc_attr( $pos_class ); ?> frm_lite_style">
<label class="frm_primary_label"><?php esc_html_e( 'Check Boxes', 'formidable' ); ?></label>
<div class="frm_opt_container">
<div class="frm_checkbox"><label><input type="checkbox" /><?php esc_html_e( 'Option 1', 'formidable' ); ?></label></div>
<div class="frm_checkbox"><label><input type="checkbox" /><?php esc_html_e( 'Option 2', 'formidable' ); ?></label></div>
</div>
</div>
<?php do_action( 'frm_sample_style_form', compact( 'style', 'pos_class' ) ); ?>
<div class="frm_submit">
<input type="submit" disabled="disabled" class="frm_full_opacity" value="<?php esc_attr_e( 'Submit', 'formidable' ); ?>" />
</div>
<div class="clear"></div>
<div class="frm_message">
<strong><?php esc_html_e( 'SAMPLE:', 'formidable' ); ?></strong>
<?php echo wp_kses_post( $frm_settings->success_msg ); ?>
</div>
<div class="frm_error_style">
<strong><?php esc_html_e( 'SAMPLE:', 'formidable' ); ?></strong>
<?php echo wp_kses_post( $frm_settings->invalid_msg ); ?>
</div>
</div>
</fieldset>
</div>
</div>
</div>