| 1 |
<?php |
| 2 |
/** |
| 3 |
* Onboarding Wizard - Unsuccessful (Oops, Something Went Wrong) Step. |
| 4 |
* |
| 5 |
* @package Formidable |
| 6 |
*/ |
| 7 |
|
| 8 |
if ( ! defined( 'ABSPATH' ) ) { |
| 9 |
die( 'You are not allowed to call this page directly.' ); |
| 10 |
} |
| 11 |
?> |
| 12 |
<section id="frm-onboarding-unsuccessful-step" class="frm-onboarding-step frm-card-box frmcenter frm_hidden" data-step-name="<?php echo esc_attr( $step ); ?>"> |
| 13 |
<div class="frm-card-box-header"> |
| 14 |
<img class="frm-onboarding-logo" src="<?php echo esc_url( FrmAppHelper::plugin_url() ); ?>/images/logo.svg" alt="<?php esc_attr_e( 'Formidable Onboarding Wizard Logo', 'formidable' ); ?>" /> |
| 15 |
</div> |
| 16 |
|
| 17 |
<div class="frm-card-box-content frm-mt-sm"> |
| 18 |
<h2 class="frm-card-box-title"><?php esc_html_e( 'Oops, Something Went Wrong', 'formidable' ); ?></h2> |
| 19 |
<p class="frm-card-box-text"> |
| 20 |
<?php esc_html_e( 'We couldn\'t complete Pro onboarding due to a connection issue. You can perform a manual install or jump to the Formidable Dashboard and try again later.', 'formidable' ); ?> |
| 21 |
</p> |
| 22 |
</div> |
| 23 |
|
| 24 |
<?php |
| 25 |
FrmOnboardingWizardHelper::print_footer( |
| 26 |
array( |
| 27 |
'footer-class' => 'frm-justify-center frm-mt-2xl', |
| 28 |
'display-back-button' => false, |
| 29 |
'primary-button-text' => __( 'Go to Dashboard', 'formidable' ), |
| 30 |
'primary-button-href' => admin_url( 'admin.php?page=' . FrmDashboardController::PAGE_SLUG ), |
| 31 |
'primary-button-role' => false, |
| 32 |
'secondary-button-text' => __( 'Install Manually', 'formidable' ), |
| 33 |
'secondary-button-href' => admin_url( 'plugin-install.php' ), |
| 34 |
'secondary-button-role' => false, |
| 35 |
'secondary-button-skip-step' => false, |
| 36 |
) |
| 37 |
); |
| 38 |
?> |
| 39 |
</section> |
| 40 |
|