mirror of
https://github.com/AlexandreRouma/wiscast.git
synced 2026-04-20 16:22:44 +00:00
33 lines
1023 B
HTML
33 lines
1023 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<!-- Configure the page encoding -->
|
|
<meta charset="UTF-8">
|
|
|
|
<!-- Title of the software -->
|
|
<title>WisCast - Display</title>
|
|
|
|
<!-- Load the stylesheet from the main style file -->
|
|
<link rel="stylesheet" href="/css/style.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div id="idleScreen">
|
|
<span id="dispIDLabel">Display ID:</span><br>
|
|
<span id="dispID"></span>
|
|
<span id="otpLabel">OTP:</span><br>
|
|
<span id="otp"></span>
|
|
</div>
|
|
|
|
<!-- Video widget -->
|
|
<video id="playback" autoplay playsinline hidden></video>
|
|
</body>
|
|
|
|
<!-- Footer to show credit to the software and developers -->
|
|
<footer id="credits">
|
|
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 screen code -->
|
|
<script src="/scripts/display.js"></script>
|
|
</html> |