mirror of
https://github.com/AlexandreRouma/wiscast.git
synced 2026-04-18 15:44:24 +00:00
38 lines
1.3 KiB
HTML
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="dispIDTb" placeholder="Display Name" required autocomplete="off"><br><br>
|
|
<input type="text" id="dispOTPTb" placeholder="OTP" required autocomplete="off" maxlength="6"><br><br>
|
|
<button id="connectBtn" 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="disconnectBtn">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> |