PluginProbe ʕ •ᴥ•ʔ
NitroPack – Performance, Page Speed & Cache Plugin for Core Web Vitals, CDN & Image Optimization / 1.18.8
NitroPack – Performance, Page Speed & Cache Plugin for Core Web Vitals, CDN & Image Optimization v1.18.8
1.19.8 1.19.7 1.19.6 1.19.5 trunk 1.10.0 1.10.1 1.10.2 1.10.3 1.10.4 1.11.0 1.12.0 1.13.0 1.14.0 1.15.0 1.15.1 1.15.2 1.15.3 1.16.0 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.16.6 1.16.7 1.16.8 1.17.0 1.17.6 1.17.7 1.17.8 1.17.9 1.18.0 1.18.1 1.18.2 1.18.3 1.18.4 1.18.5 1.18.6 1.18.7 1.18.8 1.18.9 1.19.0 1.19.1 1.19.2 1.19.3 1.19.4 1.3.19 1.3.20 1.4.0 1.4.1 1.5.0 1.5.1 1.5.10 1.5.11 1.5.12 1.5.13 1.5.14 1.5.15 1.5.16 1.5.17 1.5.18 1.5.19 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.5.9 1.6.0 1.6.1 1.7.0 1.7.1 1.8.0 1.8.1 1.8.3 1.9.0 1.9.1 1.9.2
nitropack / view / connect-oneclick.php
nitropack / view Last commit date
animations 7 months ago images 7 months ago javascript 7 months ago modals 6 months ago stylesheet 7 months ago templates 1 year ago admin.php 7 months ago connect-oneclick.php 1 year ago connect.php 7 months ago dashboard-oneclick.php 6 months ago dashboard.php 6 months ago oneclick.php 7 months ago preview-site.php 7 months ago system-report.php 1 year ago
connect-oneclick.php
44 lines
1 <div id="nitropack-connect">
2 <header class="header">
3 <nav>
4 <ol>
5 <li class="step passed"><?php esc_html_e('Plugin activation', 'nitropack'); ?></li>
6 <li class="step current"><?php esc_html_e('Connect to NitroPack account', 'nitropack'); ?></li>
7 </ol>
8 </nav>
9 </header>
10 <main id="main">
11 <div class="logos">
12 <img src="<?php echo plugin_dir_url(__FILE__) . 'images/nitropack_logo.svg'; ?>" class="" width="116" height="44" alt="NitroPack" />
13 <img src="<?php echo plugin_dir_url(__FILE__) . 'images/plus.svg'; ?>" class="" width="32" height="32" alt="+" />
14 <img src="<?php echo plugin_dir_url(__FILE__) . 'images/wp_logo.svg'; ?>" class="" width="52" height="52" alt="WordPress" />
15 </div>
16 <div class="connect">
17 <div class="headline-container">
18 <h1><?php esc_html_e('Welcome to NitroPack OneClick for WordPress', 'nitropack'); ?></h1>
19 <p><?php esc_html_e( 'Your license is managed by your hosting provider.', 'nitropack'); ?></p>
20 </div>
21 <div class="cta-container">
22 <form class="w-full" action="options.php" method="post" id="api-details-form">
23 <?php settings_fields(NITROPACK_OPTION_GROUP);
24 do_settings_sections(NITROPACK_OPTION_GROUP); ?>
25 <?php if ($oneClickConnectUrl) : ?>
26 <a class="btn btn-primary btn-xl w-100" href="<?php esc_attr_e($oneClickConnectUrl); ?>">
27 <img src="<?php echo plugin_dir_url(__FILE__) . 'images/loading.svg'; ?>" alt="loading" class="icon-left hidden">
28 <?php esc_html_e('Connect to NitroPack OneClick', 'nitropack'); ?>
29 </a>
30 <?php endif; ?>
31 <p class="text-center mt-2"><?php esc_html_e('Visit your hosting provider page to connect NitroPack with your WordPress site.', 'nitropack'); ?></p>
32 </form>
33 </div>
34 </div>
35 <div class="success-container hidden">
36 <span class="bg-purple-100 btn-icon rounded-full mb-4" style="height: 36px;"><svg width="13" height="9" viewBox="0 0 13 9" fill="none" xmlns="http://www.w3.org/2000/svg">
37 <path d="M11.8334 1L4.50008 8.33333L1.16675 5" stroke="#1B004E" stroke-linecap="round" stroke-linejoin="round" />
38 </svg>
39 </span>
40 <h1><?php esc_html_e('All set!', 'nitropack'); ?></h1>
41 <p><?php esc_html_e('Your setup is complete – you\'re all set to experience a seamless journey ahead.', 'nitropack'); ?></p>
42 </div>
43 </main>
44 </div>