screensy-unbloated/public/index.html
2025-09-19 06:59:13 +05:00

83 lines
3.8 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>screensy</title>
<meta name="description" content="Simple peer-to-peer screen sharing" />
<meta name="application-name" content="screensy" />
<meta name="language" content="en" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="./styles.css" rel="stylesheet" />
<script type="text/javascript" src="./screensy.js"></script>
</head>
<body>
<noscript>
<div class="popup">
<h1>JavaScript is not supported or not enabled.</h1>
<p>
Screensy needs JavaScript support, but your browser does not provide it. Use a browser that supports
JavaScript and make sure it is enabled.
</p>
</div>
</noscript>
<div id="access-denied" class="popup hidden">
<h1>You denied access to your screen.</h1>
<p>
Screensy needs access to your screen in order to share it, but you denied access. Try reloading this
webpage and provide access when your browser asks you for it. If your browser does not ask you for
access, check your browser settings.
</p>
</div>
<div id="screensharing-not-supported" class="popup hidden">
<h1>Screensharing is not supported or not enabled.</h1>
<p>
Screensy cannot share your screen, because your browser does not support it, or it is not enabled. Use a
browser that supports screensharing and make sure it is enabled.
</p>
</div>
<div id="websockets-not-supported" class="popup hidden">
<h1>WebSocket is not supported or not enabled.</h1>
<p>
Screensy needs WebSocket support, but your browser does not provide it. Use a browser that supports
WebSocket and make sure it is enabled.
</p>
</div>
<div id="webrtc-not-supported" class="popup hidden">
<h1>WebRTC is not supported or not enabled.</h1>
<p>
Screensy needs WebRTC support, but your browser does not provide it. Use a browser that supports WebRTC
and make sure it is enabled.
</p>
</div>
<div id="mediastream-not-supported" class="popup hidden">
<h1>MediaStream is not supported or not enabled.</h1>
<p>
Screensy needs MediaStream support, but your browser does not provide it. Use a browser that supports
MediaStream and make sure it is enabled.
</p>
</div>
<div id="websocket-connect-failed" class="popup hidden">
<h1>Could not establish a WebSocket connection.</h1>
<p>
Screensy needs to establish a WebSocket connection to connect to other users, but it was not able to.
Try using a different device or contact the administrator of this website.
</p>
</div>
<div id="broadcaster-disconnected" class="popup hidden">
<h1>The broadcaster has disconnected.</h1>
</div>
<div id="click-to-share" class="popup clickable hidden">
<h1>Click anywhere to share your screen.</h1>
</div>
<video id="stream" autoplay="autoplay" muted="muted" controls="controls" playsinline="playsinline">
<div class="popup">
<h1>Video tags are not supported.</h1>
<p>
Screensy needs video tag support, but your browser does not provide it. Use a browser that supports
video tags.
</p>
</div>
</video>
</body>
</html>