PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.33
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.33
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 / index.php

index.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 6.33, at classes/views/onboarding-wizard/index.php

41 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Onboarding Wizard Page.
4 *
5 * @package Formidable
6 */
7
8 if ( ! defined( 'ABSPATH' ) ) {
9 die( 'You are not allowed to call this page directly.' );
10 }
11 ?>
12 <div id="frm-onboarding-wizard-page" class="frm_wrap" data-current-step="consent-tracking">
13 <div id="frm-onboarding-container" class="frm-flex-col frm-justify-center frm-items-center">
14 <ul id="frm-onboarding-rootline" class="frm-rootline">
15 <li class="frm-rootline-item" data-step="consent-tracking">
16 <?php FrmAppHelper::icon_by_class( 'frmfont frm_checkmark_icon frm_svg9', array( 'aria-hidden' => 'true' ) ); ?>
17 </li>
18 <li class="frm-rootline-item" data-step="install-addons">
19 <?php FrmAppHelper::icon_by_class( 'frmfont frm_checkmark_icon frm_svg9', array( 'aria-hidden' => 'true' ) ); ?>
20 </li>
21 <li class="frm-rootline-item" data-step="success">
22 <?php FrmAppHelper::icon_by_class( 'frmfont frm_checkmark_icon frm_svg9', array( 'aria-hidden' => 'true' ) ); ?>
23 </li>
24 </ul>
25
26 <?php
27 foreach ( $step_parts as $step => $file ) {
28 require $view_path . $file;
29 }
30 ?>
31
32 <a id="frm-onboarding-return-dashboard" href="<?php echo esc_url( admin_url( 'admin.php?page=' . FrmDashboardController::PAGE_SLUG ) ); ?>">
33 <?php esc_html_e( 'Exit Onboarding', 'formidable' ); ?>
34 </a>
35 </div>
36
37 <?php if ( $license_key ) { ?>
38 <input type="hidden" id="frm-license-key" name="frm-license-key" value="<?php echo esc_attr( $license_key ); ?>">
39 <?php } ?>
40 </div>
41