PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.32.1
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.32.1
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
formidable / classes / views / onboarding-wizard / steps / unsuccessful-step.php

unsuccessful-step.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 6.32.1, at classes/views/onboarding-wizard/steps/unsuccessful-step.php

40 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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