-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (31 loc) · 910 Bytes
/
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
42
<html>
<head>
<title>Chat</title>
<link rel="stylesheet" href="libs/jQueryUI/jquery-ui.css">
<link rel="stylesheet" href="css/chat.css">
<script src="libs/jQuery/jquery-3.2.1.js"></script>
<script src="libs/jQueryUI/jquery-ui.js"></script>
<script src="libs/peerJS/peer.min.js"></script>
<script src="js/chat.js"></script>
<script src="js/config.js"></script>
</head>
<body>
<div id='header'>
<div class='loggedInAs'></div>
</div>
<div id='leftContainer'>
Connect to User: <input id='destUser'></input><button id='submitDestUser'>Connect</button>
</div>
<div id='rightContainer'>
<div>
<div class='videoLabel' data-video='myVideo'></div>
<video id='myVideo'></video>
</div>
<video id='theirVideo'></video>
<button id='disconnectButton'>Disconnect</button>
</div>
<div id='userDialog'></div>
<div id='answerCallDialog'></div>
<div id='footer'></div>
</body>
</html>