Files
wiscast/www/index.html
2025-11-04 19:18:53 -05:00

38 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<!-- Configure the page encoding -->
<meta charset="UTF-8">
<!-- Title of the software -->
<title>WisCast - Connect</title>
<!-- Load the stylesheet from the main style file -->
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
<!-- Connection form -->
<div id="connForm">
<p class="TV">📺</p><br>
<input type="text" id="dispName" placeholder="Display ID" required autocomplete="off"><br><br>
<input type="text" id="otp" placeholder="OTP" required autocomplete="off"><br><br>
<button id="connect" disabled autocomplete="off">Connect</button>
</div>
<!-- Streaming form -->
<div id="streamForm" hidden>
<h1>You are live!</h1>
<video id="localPlayback" autoplay playsinline></video><br><br>
<button id="disconnect">Disconnect</button>
</div>
</body>
<!-- Footer to show credit to the software and developers -->
<footer>
Powered by <a href="https://wiscast.org/" target="_blank">WisCast</a>. Made with ❤️ by <a href="https://x.com/ryzerth" target="_blank">Ryzerth</a>
</footer>
<!-- Main client code -->
<script src="/scripts/user.js"></script>
</html>