-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (36 loc) · 1.12 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Page Title</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='main.css'>
<script src="jquery.js"></script>
<script src="peer.min.js"></script>
<script src="socket.io.js"></script>
</head>
<body>
<input id="register" type="text" placeholder="Account">
<input id="btn-register" type="button" value="OK">
<br>
<div>List :</div>
<ul id="list">
</ul>
<p><button id="start">Start Capture</button> <button id="stop">Stop Capture</button></p>
<div>
<video id="video" autoplay class="vid"></video>
<video id="videoGuest" autoplay class="vid"></video>
</div>
<br>
<div id="id-peer"></div>
<div>
<input type="text" id="guest-id" placeholder="Guest id">
<input type="button" id="btn-ok" value="OK">
</div>
<strong>Log:</strong>
<br>
<pre id="log"></pre>
</body>
<script src='main.js'></script>
</html>