25 lines
686 B
PHP
25 lines
686 B
PHP
<?php
|
|
/**
|
|
* Submit box view.
|
|
*
|
|
* @since 2.0.0
|
|
*/
|
|
?>
|
|
<!-- Submit Box -->
|
|
<div class="wu-flex wu-justify-between wu-bg-gray-100 wu--m-in wu-mt-4 wu-p-4 wu-overflow-hidden wu-border-t wu-border-solid wu-border-l-0 wu-border-r-0 wu-border-b-0 wu-border-gray-300">
|
|
|
|
<a href="<?php echo esc_url($page->get_prev_section_link()); ?>" class="wu-self-center button button-large wu-float-left">
|
|
<?php _e('← Go Back', 'wp-ultimo'); ?>
|
|
</a>
|
|
|
|
<span class="wu-self-center wu-content-center wu-flex">
|
|
|
|
<button name="submit" value="1" class="button button-primary button-large">
|
|
<?php _e('Continue', 'wp-ultimo'); ?>
|
|
</button>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
<!-- End Submit Box -->
|