File: //var/www/drakkar_site_dev/wp-content/plugins/formidable/classes/views/onboarding-wizard/footer.php
<?php
/**
* Onboarding Wizard - Footer.
*
* @package Formidable
*/
if ( ! defined( 'ABSPATH' ) ) {
die( 'You are not allowed to call this page directly.' );
}
?>
<div class="frm-card-box-footer<?php echo $args['footer-class'] ? ' ' . esc_attr( $args['footer-class'] ) : ''; ?>">
<?php if ( $args['display-back-button'] ) { ?>
<a href="#" class="frm-onboarding-back-button frm-button-tertiary frm-mr-auto" role="button">
<?php esc_html_e( 'Back', 'formidable' ); ?>
</a>
<?php } ?>
<a <?php FrmAppHelper::array_to_html_params( $secondary_button_attributes, true ); ?>>
<?php echo esc_html( $args['secondary-button-text'] ); ?>
</a>
<a <?php FrmAppHelper::array_to_html_params( $primary_button_attributes, true ); ?>>
<?php echo esc_html( $args['primary-button-text'] ); ?>
</a>
</div>