<?php
if ( ! defined( 'ABSPATH' ) ) {
die( 'You are not allowed to call this page directly.' );
}
$pos_class = 'frm_' . ( $style->post_content['position'] == 'none' ? 'top' : ( $style->post_content['position'] == 'no_label' ? 'none' : $style->post_content['position'] ) ) . '_container';
?>
<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">
<div class="frm_form_fields">
<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 for="field_aq7w5e" class="frm_primary_label"><?php esc_html_e( 'Text field', 'formidable' ); ?> <span class="frm_required">*</span></label>
<input id="field_aq7w5e" 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="option-1"><?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 for="field_bq7w5e" class="frm_primary_label"><?php esc_html_e( 'Text field with error', 'formidable' ); ?> <span class="frm_required">*</span></label>
<input id="field_bq7w5e" 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 for="field_cq7w5e" class="frm_primary_label"><?php esc_html_e( 'Text field in active state', 'formidable' ); ?> <span class="frm_required">*</span></label>
<input id="field_cq7w5e" 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 for="field_dq7w5e" class="frm_primary_label"><?php esc_html_e( 'Read-only field', 'formidable' ); ?></label>
<input id="field_dq7w5e" 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 for="field_eq7w5e" class="frm_primary_label"><?php esc_html_e( 'Text Area', 'formidable' ); ?></label>
<textarea id="field_eq7w5e"></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" name="item_meta[1029]" /><?php esc_html_e( 'Option 1', 'formidable' ); ?></label></div>
<div class="frm_radio"><label><input type="radio" name="item_meta[1029]" /><?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
/**
* @since 2.03
*
* @param array $args {
* @type WP_Post $style
* @type string $pos_class
* }
*/
do_action( 'frm_sample_style_form', compact( 'style', 'pos_class' ) );
?>
<div class="frm_submit">
<input type="submit" class="frm-opacity-100" 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>
|