Files
assets
data
dependencies
inc
lang
views
admin-pages
base
checkout-forms
customers
edit
products
sites
wizard
submit-box.php
centered.php
dash.php
edit.php
empty-state.php
filter.php
grid.php
list.php
responsive-table-row.php
settings.php
wizard-body.php
wizard.php
broadcast
checkout
customers
dashboard-statistics
dashboard-widgets
domain
dynamic-styles
email
emails
events
invoice
legacy
limitations
memberships
payments
settings
shortcodes
sites
system-info
taxes
ui
wizards
about.php
admin-notices.php
classes.php
phpcs.xml
.gitignore
LICENSE
autoload.php
composer.json
constants.php
loco.xml
readme.txt
sunrise.php
uninstall.php
wp-multisite-waas.php
wp-multisite-waas/views/base/wizard/submit-box.php
2024-11-30 18:24:12 -07:00

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('&larr; 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 -->