jetpack-plugin-portal-containers.php
2 years ago
must-connect-main-blog.php
2 years ago
network-activated-notice.php
2 years ago
network-admin-header.php
2 years ago
network-settings.php
2 years ago
must-connect-main-blog.php
28 lines
| 1 | <?php |
| 2 | /** |
| 3 | * View template file for main network site connection prompt. |
| 4 | * |
| 5 | * @html-template Jetpack::load_view |
| 6 | * @package automattic/jetpack |
| 7 | */ |
| 8 | |
| 9 | // phpcs:disable VariableAnalysis.CodeAnalysis.VariableAnalysis.UndefinedVariable -- HTML template, let Phan handle it. |
| 10 | |
| 11 | ?> |
| 12 | <div class="wrap"> |
| 13 | <div class="jetpack-wrap-container dops-card"> |
| 14 | <div class="jetpack-text-container"> |
| 15 | <h1><?php esc_html_e( 'Get started with Jetpack Multisite', 'jetpack' ); ?></h1> |
| 16 | <p> |
| 17 | <?php esc_html_e( 'Get started managing your Multisite install of Jetpack by connecting.', 'jetpack' ); ?> |
| 18 | </p> |
| 19 | </div> |
| 20 | <div class="jetpack-install-container"> |
| 21 | <p class="submit"><a href="<?php echo esc_url( $data['url'] ); ?>" class="button-connector dops-button is-primary" id="wpcom-connect"><?php esc_html_e( 'Set up Jetpack', 'jetpack' ); ?></a></p> |
| 22 | <p class="jetpack-install-blurb"> |
| 23 | <?php jetpack_render_tos_blurb(); ?> |
| 24 | </p> |
| 25 | </div> |
| 26 | </div> |
| 27 | </div> |
| 28 |