mirror of
https://gitlab.com/futo-org/fcast.git
synced 2025-06-24 21:25:23 +00:00
27 lines
No EOL
906 B
HTML
27 lines
No EOL
906 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>FCast Receiver</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="stylesheet" href="../assets/fonts/inter.css" />
|
|
<link rel="stylesheet" href="./common.css" />
|
|
</head>
|
|
<body>
|
|
<!-- Empty video element as a workaround to fix issue with white border outline without it... -->
|
|
<video id="video-player" class="video"></video>
|
|
<div id="viewer" class="viewer">
|
|
<div id="title-icon"></div>
|
|
<img id="viewer-image" class="viewer" />
|
|
<iframe id="viewer-generic" class="viewer"></iframe>
|
|
</div>>
|
|
|
|
|
|
<div id="toast-notification">
|
|
<div id="toast-icon"></div>
|
|
<div id="toast-text"></div>
|
|
</div>
|
|
|
|
<script src="./renderer.js"></script>
|
|
</body>
|
|
</html> |