mirror of
https://github.com/krishpranav/remote-desktop.git
synced 2025-11-03 02:13:30 +08:00
28 lines
1.0 KiB
HTML
28 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<link rel="stylesheet" href="/static/css/style.css">
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/webrtc-adapter/6.4.0/adapter.min.js"
|
|
integrity="sha256-UH0Npcih7yj1s23pQK0UCrCSxx7AkT91CCMsUGnZ9Ew=" crossorigin="anonymous"></script>
|
|
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400&display=swap" rel="stylesheet">
|
|
<title>Remote Desktop</title>
|
|
</head>
|
|
<body>
|
|
<div id="app">
|
|
<div id="controls">
|
|
<div id="error"></div>
|
|
<select id="screen-select">
|
|
<option>Screen 1</option>
|
|
<option>Screen 2</option>
|
|
</select>
|
|
<button id="start-stop">Start</button>
|
|
</div>
|
|
<div id="instructions">Choose your screen and press Start</div>
|
|
<video id="remote-video" autoplay muted playsinline></video>
|
|
</div>
|
|
<script src="/static/js/app.js"></script>
|
|
</body>
|
|
</html> |