| 1 |
<?php |
| 2 |
/** |
| 3 |
* Setup wizard view |
| 4 |
* |
| 5 |
* @package |
| 6 |
*/ |
| 7 |
?> |
| 8 |
|
| 9 |
<!DOCTYPE html> |
| 10 |
<html lang="en" xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?> > |
| 11 |
<head> |
| 12 |
<meta name="viewport" content="width=device-width"/> |
| 13 |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> |
| 14 |
<title><?php esc_html_e('WPFunnels - Setup Wizard', 'wpfnl'); ?></title> |
| 15 |
<?php do_action( 'admin_enqueue_scripts' ); ?> |
| 16 |
<?php do_action('admin_print_styles'); ?> |
| 17 |
<?php do_action('admin_head'); ?> |
| 18 |
<script type="text/javascript"> |
| 19 |
addLoadEvent = function(func){if(typeof jQuery!="undefined")jQuery(document).ready(func);else if(typeof wpOnload!='function'){wpOnload=func;}else{var oldonload=wpOnload;wpOnload=function(){oldonload();func();}}}; |
| 20 |
var ajaxurl = '<?php echo admin_url( 'admin-ajax.php', 'relative' ); ?>'; |
| 21 |
var pagenow = ''; |
| 22 |
</script> |
| 23 |
</head> |
| 24 |
<body class="wpfunnels-setup wp-core-ui"> |
| 25 |
<div id="wpfunnels_setup_wizard" style="height:100vh;"></div> |
| 26 |
<?php |
| 27 |
wp_enqueue_media(); // add media |
| 28 |
wp_print_scripts(); // window.wp |
| 29 |
do_action('admin_footer'); |
| 30 |
?> |
| 31 |
</body> |
| 32 |
</html> |
| 33 |
|