
<!-- ================= LOGIN POPUP ================= -->
    <div id="loginModal" style="
        display:none;
        position:fixed;
        inset:0;
        background:rgba(0,0,0,0.6);
        z-index:999999;
        justify-content:center;
        align-items:center;
    ">
    
        <div style="
            width:90%;
            max-width:600px;
            height:80%;
            background:#fff;
            border-radius:12px;
            overflow:hidden;
            position:relative;
        ">
    
            <!-- CLOSE BUTTON -->
            <span onclick="closeLoginPopup()" style="
                position:absolute;
                top:10px;
                right:15px;
                font-size:22px;
                cursor:pointer;
                z-index:10;
            ">&times;</span>
    
            <!-- LOGIN PAGE -->
            <iframe 
                id="loginFrame"
                src="https://admin2.luferatech.com/sign-in.php"
                style="width:100%;height:100%;border:none;">
            </iframe>
    
        </div>
    </div>
    <script>
      function openLoginPopup(){
    
        const currentUrl = window.location.href;
    
        document.getElementById("loginFrame").src =
            "https://admin2.luferatech.com/sign-in.php?redirect=" 
            + encodeURIComponent(currentUrl);
    
        document.getElementById("loginModal").style.display = "flex";
    }
    
    function closeLoginPopup() {
        document.getElementById("loginModal").style.display = "none";
    }
    </script>
    <script>
        window.addEventListener("message", function(event){
    
        // 🔒 SECURITY CHECK
        if (event.origin !== "https://admin2.luferatech.com") return;
    
        // ================= LOGIN SUCCESS =================
        if (event.data.type === "LOGIN_SUCCESS") {
    
            console.log("Login message:", event.data);
    
            const redirectUrl = event.data.redirect || '';
    
            // ✅ SAVE DATA
            sessionStorage.setItem("loginSuccess", "1");
            sessionStorage.setItem("loginRedirect", redirectUrl);
    
            // ✅ CLOSE POPUP
            const modal = document.getElementById("loginModal");
            if (modal) modal.style.display = "none";
        }
    
        // ================= FALLBACK RELOAD =================
        if (event.data.type === "FORCE_RELOAD") {
            window.location.reload();
        }
    
        });
        
            window.addEventListener("load", function(){
        
            setTimeout(function(){
        
                const isLogin = sessionStorage.getItem("loginSuccess");
                const redirectUrl = sessionStorage.getItem("loginRedirect");
        
                if (isLogin === "1") {
        
                    // clear to avoid loop
                    sessionStorage.removeItem("loginSuccess");
                    sessionStorage.removeItem("loginRedirect");
        
                    // redirect
                    if (redirectUrl) {
                        window.location.href = redirectUrl;
                    }
                }
        
            }, 300);
        
        });
    </script>

<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//luferatech.com/wp-content/plugins/wordpress-seo/css/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://luferatech.com/post-sitemap.xml</loc>
		<lastmod>2025-11-14T05:26:35+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://luferatech.com/page-sitemap.xml</loc>
		<lastmod>2026-04-27T11:42:24+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://luferatech.com/webteck_footer_build-sitemap.xml</loc>
		<lastmod>2026-04-24T10:28:21+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://luferatech.com/product-sitemap.xml</loc>
		<lastmod>2025-03-31T05:58:15+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://luferatech.com/category-sitemap.xml</loc>
		<lastmod>2025-11-14T05:26:35+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://luferatech.com/post_tag-sitemap.xml</loc>
		<lastmod>2025-11-14T05:26:35+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://luferatech.com/product_cat-sitemap.xml</loc>
		<lastmod>2025-03-31T05:58:15+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://luferatech.com/product_tag-sitemap.xml</loc>
		<lastmod>2025-03-31T05:58:15+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://luferatech.com/author-sitemap.xml</loc>
		<lastmod>2026-04-02T10:31:13+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Yoast SEO -->