| 1 |
<?php |
| 2 |
/** |
| 3 |
* Outputs the content for the Plugin Setup Wizard > Done step. |
| 4 |
* |
| 5 |
* @package ConvertKit |
| 6 |
* @author ConvertKit |
| 7 |
*/ |
| 8 |
|
| 9 |
?> |
| 10 |
|
| 11 |
<h1><?php esc_html_e( 'Setup complete', 'convertkit' ); ?></h1> |
| 12 |
<p> |
| 13 |
<?php esc_html_e( 'The Kit for WordPress Plugin setup is complete.', 'convertkit' ); ?> |
| 14 |
</p> |
| 15 |
|
| 16 |
<div class="convertkit-setup-wizard-grid"> |
| 17 |
<div> |
| 18 |
<a href="<?php echo esc_url( admin_url( 'index.php' ) ); ?>" class="button button-primary button-hero"> |
| 19 |
<?php esc_html_e( 'Dashboard', 'convertkit' ); ?> |
| 20 |
</a> |
| 21 |
<span class="description"><?php esc_html_e( 'Exit the wizard and load the WordPress Dashboard screen.', 'convertkit' ); ?></span> |
| 22 |
</div> |
| 23 |
|
| 24 |
<div> |
| 25 |
<a href="<?php echo esc_url( convertkit_get_settings_link() ); ?>" class="button button-primary button-hero"> |
| 26 |
<?php esc_html_e( 'Plugin Settings', 'convertkit' ); ?> |
| 27 |
</a> |
| 28 |
<span class="description"><?php esc_html_e( 'Exit the wizard and load the Plugin\'s settings screen.', 'convertkit' ); ?></span> |
| 29 |
</div> |
| 30 |
</div> |
| 31 |
|