52 lines
2.1 KiB
HTML
52 lines
2.1 KiB
HTML
<!doctype html>
|
||||
|
|
<html lang="en">
|
|||
|
|
<head>
|
|||
|
|
<meta charset="utf-8" />
|
|||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" />
|
|||
|
|
<title>Watching — QR Presentation</title>
|
|||
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|||
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|||
|
|
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600&display=swap" rel="stylesheet" />
|
|||
|
|
<link rel="stylesheet" href="/css/styles.css" />
|
|||
|
|
</head>
|
|||
|
|
<body>
|
|||
|
|
<div class="stage-page">
|
|||
|
|
<div class="stage-bar">
|
|||
|
|
<div class="brand"><img class="brand-logo" src="/img/mps-icon.png" alt="" /> <span class="lamp on" id="lamp"></span> <span id="deckTitle">Presentation</span></div>
|
|||
|
|
<div class="spacer"></div>
|
|||
|
|
<span class="pill" id="statusPill"><b id="statusText">Connecting…</b></span>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<div class="stage" id="stage">
|
|||
|
|
<div class="msg"><div class="spinner"></div><div id="stageMsg">Connecting…</div></div>
|
|||
|
|
|
|||
|
|
<div class="tapjoin" id="tapjoin">
|
|||
|
|
<div class="big">Tap to join with sound</div>
|
|||
|
|
<button class="btn primary" id="tapBtn">Join presentation</button>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<div class="followbar" id="followbar">
|
|||
|
|
<span>You're browsing on your own</span>
|
|||
|
|
<button class="btn primary small" id="followBtn">Rejoin presenter</button>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<div class="controls" id="controls" style="display:none;">
|
|||
|
|
<div class="spacer" style="flex:1"></div>
|
|||
|
|
<button class="btn" id="first" title="First slide">«</button>
|
|||
|
|
<button class="btn" id="prev" title="Previous">‹</button>
|
|||
|
|
<span class="pageind" id="pageInd">– / –</span>
|
|||
|
|
<button class="btn" id="next" title="Next">›</button>
|
|||
|
|
<button class="btn" id="last" title="Last slide">»</button>
|
|||
|
|
<div class="spacer" style="flex:1"></div>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<footer class="app-footer">© 2026 Martinhal IT - Joao Vaz - Version 1.7</footer>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<div class="toast" id="toast"></div>
|
|||
|
|
<script src="/socket.io/socket.io.js"></script>
|
|||
|
|
<script type="module" src="/js/view.js"></script>
|
|||
|
|
</body>
|
|||
|
|
</html>
|