<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"
        integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"
        integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ=="
        crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
</html>
<?php
/**
 * The Template for displaying header for wizard.
 *
 * @since             1.0.0
 * @package           TInvWishlist\Wizard\Template
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
<head>
	<meta name="viewport" content="width=device-width"/>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
	<title><?php echo sprintf( __( 'TI Wishlist &rsaquo; %s', 'ti-woocommerce-wishlist' ), $title ); // WPCS: xss ok. ?></title>
	<?php do_action( 'admin_print_styles' ); ?>
	<?php //do_action( 'admin_head' ); ?>
</head>
<body class="tinvwl-wizard wp-core-ui">
<div class="tinvwl-logo">
	<i class="wizard_logo"></i>
	<h2>ti.Wishlist</h2>
</div>
<div class="tinvwl-progress">
	<ul>
		<?php
		$current_step = filter_input( INPUT_GET, 'step', FILTER_VALIDATE_INT, array( 'default'   => 0,
																					 'min_range' => 0
		) );
		foreach ( $list_steps as $step => $step_name ) {
			$class = 'active';
			if ( $step > $current_step ) {
				$class = '';
			}
			if ( $step == $current_step ) { // WPCS: loose comparison ok.
				$class = 'active last';
			}
			?>
			<li class="<?php echo esc_attr( $class ); ?>"><?php echo esc_html( $step_name ); ?></li>
		<?php } ?>
	</ul>
</div>
