/home2/mshostin/.trash/remote_panel/public/page1.html
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Page 1</title>
<script src="https://cdn.socket.io/4.7.1/socket.io.min.js"></script>
</head>
<body>
<h1>Page Visiteur 1</h1>
<p>Cette page peut être redirigée par l'admin en direct.</p>

<script>
// Connexion au namespace visiteurs
const socket = io('/visitors');

// Envoyer la page actuelle au serveur
socket.emit('updateInfo', { page: window.location.pathname });

// Écouter la redirection
socket.on('redirect', page => {
    window.location.href = page;
});
</script>
</body>
</html>