| 1 |
<?php if ( ! defined( 'ABSPATH' ) ) exit; ?> |
| 2 |
|
| 3 |
<h3><?php esc_html_e( 'You’re all setup and ready to go', 'profile-builder' ); ?></h3> |
| 4 |
<p class="cozmoslabs-description"><?php esc_html_e( 'Profile Builder is almost ready to run your user registration and login.', 'profile-builder' ); ?></p> |
| 5 |
<p class="cozmoslabs-description"><?php esc_html_e( 'You can always change these settings from the plugin settings page.', 'profile-builder' ); ?></p> |
| 6 |
|
| 7 |
<div class="wppb-setup-next"> |
| 8 |
|
| 9 |
<?php |
| 10 |
$hide_newsletter = get_user_meta( get_current_user_id(), 'wppb_setup_wizard_newsletter', true ); |
| 11 |
|
| 12 |
if( empty( $hide_newsletter ) ) : ?> |
| 13 |
<div class="wppb-setup-newsletter"> |
| 14 |
<p> |
| 15 |
<?php esc_html_e( 'Get valuable insights, tips, and strategies on how to create, grow and monetize your own membership and community websites with WordPress.', 'profile-builder' ) ?> |
| 16 |
</p> |
| 17 |
|
| 18 |
<div class="wppb-setup-newsletter__form"> |
| 19 |
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> |
| 20 |
<path d="M18 6.75H6C5.30964 6.75 4.75 7.30964 4.75 8V16C4.75 16.6904 5.30964 17.25 6 17.25H18C18.6904 17.25 19.25 16.6904 19.25 16V8C19.25 7.30964 18.6904 6.75 18 6.75Z" stroke="#757575" stroke-width="1.5" /> |
| 21 |
<path d="M5 7L12 13L19 7" stroke="#757575" stroke-width="1.5" /> |
| 22 |
</svg> |
| 23 |
|
| 24 |
<input type="email" name="email" value="<?php echo esc_html( get_option( 'admin_email' ) ) ?>"> |
| 25 |
|
| 26 |
<a class="button button-secondary" href="#"><?php esc_html_e( 'Yes Please!', 'profile-builder' ) ?></a> |
| 27 |
</div> |
| 28 |
|
| 29 |
<div class="wppb-setup-newsletter__success"> |
| 30 |
<?php esc_html_e( 'Please check your email to confirm the subscription.', 'profile-builder' ) ?> |
| 31 |
</div> |
| 32 |
|
| 33 |
<input type="hidden" id="wppb_nonce" name="wppb_nonce" value="<?php echo esc_attr( wp_create_nonce( 'dismiss_setup_wizard_newsletter_subscribe' ) ); ?>" /> |
| 34 |
</div> |
| 35 |
<?php endif; ?> |
| 36 |
|
| 37 |
<?php $this->output_progress_steps(); ?> |
| 38 |
|
| 39 |
<div class="wppb-setup-form-button"> |
| 40 |
<a class="button primary button-primary button-hero" href="<?php echo esc_url( admin_url( 'admin.php?page=profile-builder-dashboard' ) ); ?>"><?php esc_html_e( 'Continue to Your Profile Builder Dashboard', 'profile-builder' ); ?></a> |
| 41 |
</div> |
| 42 |
</div> |