PATH:
home
/
thebhoeo
/
.trash
/
backwpup
/
pages
<?php use BackWPup\Utils\BackWPupHelpers; if ( ! defined( 'ABSPATH' ) ) { exit; } /** * @var int $first_job_id ID of the first job we are retrieving the frequency settings for. * @var int $second_job_id ID of the second job we are retrieving the frequency settings for. */ ?> <?php BackWPupHelpers::component("containers/form-start", [ "scrollable" => false, "identifier" => "backwpup-onboarding-form", ]); ?> <?php BackWPupHelpers::component("form/hidden", [ "name" => "onboarding", "value" => "1", ]); ?> <div class="max-w-screen-xl flex flex-col gap-4 backwpup-typography"> <?php BackWPupHelpers::component("app/header", [ "title" => __("Ready to set up your first backup?", 'backwpup'), "subtitle" => __("You’re just a few steps away from creating a new backup of your site.", 'backwpup'), ]); ?> <div class="flex flex-col gap-4 lg:flex-row"> <?php BackWPupHelpers::component("app/steps", [ "current_step" => 1, ]); ?> <div class="p-4 lg:p-8 bg-grey-100 rounded-lg flex flex-col flex-auto" id="backwpup-onboarding-panes"> <article class="flex flex-col flex-auto" data-step="1"> <?php BackWPupHelpers::component("onboarding/step1", [ 'first_job_id' => $first_backup_job_id, 'second_job_id' => $first_backup_job_id ]); ?> </article> <article class="hidden flex-col flex-auto" data-step="2"> <?php BackWPupHelpers::component("onboarding/step2", [ "first_job_id" => $first_job_id, "second_job_id" => $second_job_id, ]); ?> </article> <article class="hidden flex-col flex-auto" data-step="3"> <?php BackWPupHelpers::component("onboarding/step3"); ?> </article> </div> </div> </div> <div id="backwpup-loading-overlay-template" class="hidden"> <div class="backwpup-loading-overlay"> <?php BackWPupHelpers::component( 'icon', [ 'name' => 'loading', 'size' => 'xl', ]); ?> </div> </div> <?php BackWPupHelpers::component( 'containers/sidebar', [ 'is_in_form' => true, 'first_job_id' => $first_backup_job_id, 'second_job_id' => $first_backup_job_id, ]); BackWPupHelpers::component( 'containers/modal' ); BackWPupHelpers::component( 'containers/form-end' ); ?>
[-] backup-now-progress.php
[edit]
[-] backup-now-start.php
[edit]
[-] backups.php
[edit]
[-] onboarding.php
[edit]
[-] first-congratulations.php
[edit]
[-] restore.php
[edit]
[-] first-progress.php
[edit]
[+]
..
[-] backup-now-complete.php
[edit]
[-] restore-complete.php
[edit]