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