automation
4 months ago
deactivationPoll
2 years ago
emails
3 weeks ago
form
1 month ago
newsletter
1 day ago
segments
1 day ago
subscribers
1 day ago
subscription
2 weeks ago
upgrade
1 year ago
woocommerce
1 year ago
analytics.html
1 year ago
automation.html
2 years ago
blank.html
2 years ago
experimental-features.html
4 years ago
forms.html
1 week ago
help.html
4 weeks ago
homepage.html
1 day ago
index.php
3 years ago
landingpage.html
2 years ago
layout.html
3 weeks ago
logs.html
1 week ago
mss_pitch_translations.html
3 years ago
newsletters.html
1 week ago
parsley-translations.html
2 years ago
premium_key_validation_strings.html
3 years ago
settings.html
2 years ago
settings_translations.html
2 weeks ago
upgrade_tiers.html
1 year ago
welcome_wizard.html
1 year ago
woo_system_info.html
2 years ago
woocommerce_setup.html
1 year ago
welcome_wizard.html
36 lines
| 1 | <% extends 'layout.html' %> <% block content %> |
| 2 | <script> |
| 3 | var mailpoet_logo_url = '<%= cdn_url('welcome-wizard/mailpoet-logo.20200623.png') %>'; |
| 4 | var wizard_sender_illustration_url = '<%= cdn_url('welcome-wizard/sender.20200623.png') %>'; |
| 5 | var wizard_tracking_illustration_url = '<%= cdn_url('welcome-wizard/tracking.20200623.png') %>'; |
| 6 | var wizard_woocommerce_illustration_url = '<%= cdn_url('welcome-wizard/woocommerce.20241219.png') %>'; |
| 7 | var wizard_MSS_pitch_illustration_url = '<%= cdn_url('welcome-wizard/illu-pitch-mss.20190912.png') %>'; |
| 8 | var finish_wizard_url = '<%= finish_wizard_url %>'; |
| 9 | var admin_email = <%= json_encode(admin_email) %>; |
| 10 | var hide_mailpoet_beacon = true; |
| 11 | var mailpoet_show_customers_import = <%= json_encode(show_customers_import) %>; |
| 12 | var mailpoet_account_url = '<%= add_referral_id("https://account.mailpoet.com/?s=" ~ subscriber_count ~ "&email=" ~ current_wp_user.user_email|escape('js')) %>'; |
| 13 | var mailpoet_settings = <%= json_encode(settings) %>; |
| 14 | var mailpoet_premium_key_valid = <%= json_encode(premium_key_valid) %>; |
| 15 | var mailpoet_mss_key_valid = <%= json_encode(mss_key_valid) %>; |
| 16 | var wizard_has_tracking_settings = <%= json_encode(has_tracking_settings) %>; |
| 17 | var mailpoet_welcome_wizard_current_step = <%= json_encode(welcome_wizard_current_step) %>; |
| 18 | </script> |
| 19 | |
| 20 | <div id="mailpoet-wizard-container"></div> |
| 21 | |
| 22 | <div class="mailpoet-wizard-video"> |
| 23 | <iframe |
| 24 | width="1" |
| 25 | height="1" |
| 26 | src="https://player.vimeo.com/video/279123953" |
| 27 | frameborder="0" |
| 28 | ></iframe> |
| 29 | </div> |
| 30 | |
| 31 | <% include 'mss_pitch_translations.html' %> |
| 32 | <% include 'premium_key_validation_strings.html' %> |
| 33 | <% include 'settings_translations.html' %> |
| 34 | |
| 35 | <% endblock %> |
| 36 |