
­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php
/**
 * Render button field
 */

defined( 'ABSPATH' ) || exit;
?>

<div class="field-wrap field-wrap-<?php echo $field['name']; ?> wpcf7r-button <?php echo isset( $field['class'] ) ? $field['class'] : ''; ?>" data-toggle="<?php echo isset( $field['show_selector'] ) ? $field['show_selector'] : ''; ?>">
		<?php if ( isset( $field['label'] ) && $field['label'] ) : ?>
			<label class="wpcf7-redirect-<?php echo $field['name']; ?>"><?php echo $field['label']; ?></label>
		<?php endif; ?>
		<input type="button" class="button-primary wpcf7-redirect-<?php echo $field['name']; ?>-fields"
		name="wpcf7-redirect<?php echo $prefix; ?>[<?php echo $field['name']; ?>]"
		<?php echo isset( $field['attr'] ) ? wpcf7r_implode_attributes( $field['attr'] ) : ''; ?>
		value="<?php echo esc_html( $field['label'] ); ?>"
		/>
</div>
