infinite-craft-searcher / public /live-pairs.html
ThongCoder's picture
Upload 16 files
709c473 verified
raw
history blame contribute delete
774 Bytes
<!-- public/live.html -->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Live Pairing Stream</title>
<style>
body { font-family: sans-serif; padding: 1em; }
#log { white-space: pre-wrap; font-family: monospace; }
</style>
</head>
<body>
<h1>🔁 Infinite Craft: Live Pairing</h1>
<div id="log">Waiting for stream...</div>
<script>
const logDiv = document.getElementById("log");
const es = new EventSource("/stream-pair");
es.onmessage = (event) => {
logDiv.textContent = event.data + "\n" + logDiv.textContent;
};
es.onerror = () => {
logDiv.textContent = "❌ Connection lost. Refresh to retry.\n" + logDiv.textContent;
es.close();
};
</script>
</body>
</html>