| 1 |
<?php |
| 2 |
/** |
| 3 |
* Login template |
| 4 |
* |
| 5 |
* @package Mailchimp |
| 6 |
*/ |
| 7 |
|
| 8 |
?> |
| 9 |
<div class="wrap"> |
| 10 |
<hr class="wp-header-end" style="display:none;"/> |
| 11 |
<div class="mailchimp-sf-login-content mailchimp-sf-content-box-wrapper"> |
| 12 |
<div class="mailchimp-sf-content-box"> |
| 13 |
<div class="title"><?php esc_html_e( 'Let\'s connect your Mailchimp account', 'mailchimp' ); ?></div> |
| 14 |
<p class="h4"> |
| 15 |
<?php |
| 16 |
esc_html_e( 'Log in to your Mailchimp account or create a new account to authorize and connect to WordPress. Setup should take just a few minutes.', 'mailchimp' ); |
| 17 |
?> |
| 18 |
</p> |
| 19 |
|
| 20 |
<div class="mailchimp-sf-oauth-connect-wrapper"> |
| 21 |
<button id="mailchimp_sf_oauth_connect" class="button mailchimp-sf-button button-primary"> |
| 22 |
<span class="mailchimp-sf-loading hidden"> |
| 23 |
<svg class="animate-spin" width="24" height="24" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"> |
| 24 |
<circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle> |
| 25 |
<path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path> |
| 26 |
</svg> |
| 27 |
</span> |
| 28 |
<?php esc_html_e( 'Log in', 'mailchimp' ); ?> |
| 29 |
</button> |
| 30 |
<a href="<?php echo esc_url( admin_url( 'admin.php?page=mailchimp_sf_create_account' ) ); ?>" class="button mailchimp-sf-button button-secondary"><?php esc_html_e( 'Create an account', 'mailchimp' ); ?></a> |
| 31 |
</div> |
| 32 |
<p class="mailchimp-sf-oauth-error error-field" style="display:none;"></p> |
| 33 |
<div id="mailchimp-sf-popup-blocked-modal" style="display:none;"> |
| 34 |
<p><?php esc_html_e( 'Please allow your browser to show popups for this page.', 'mailchimp' ); ?></p> |
| 35 |
</div> |
| 36 |
</div> |
| 37 |
</div> |
| 38 |
</div> |
| 39 |
|