animations
7 months ago
images
3 months ago
javascript
2 months ago
modals
3 months ago
stylesheet
2 months ago
templates
1 year ago
admin.php
3 months ago
connect-oneclick.php
3 months ago
connect.php
7 months ago
dashboard-oneclick.php
3 months ago
dashboard.php
3 months ago
oneclick.php
3 months ago
preview-site.php
7 months ago
system-report.php
4 months 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 by WP Engine', 'nitropack'); ?></h1> |
| 19 | <p><?php esc_html_e( 'Powered by NitroPack by WP Engine', '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', 'nitropack'); ?> |
| 29 | </a> |
| 30 | <?php endif; ?> |
| 31 | <p class="text-center mt-2"><?php esc_html_e('In order to connect NitroPack with WordPress, you need to visit the NitroPack add-on page in the WP Engine Portal.', '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> |