-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (43 loc) · 1.3 KB
/
index.html
File metadata and controls
43 lines (43 loc) · 1.3 KB
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
43
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<h1 align="center">CTRL ALT ELITE'S VideoChat</h1>
<br/>
<br/>
<table style="width:50%" border="1" align="center">
<tr>
<th><label>Your ID:</label></th><br/>
<th><label>Other ID:</label></th><br/>
</tr>
<tr>
<td><textarea id="yourId" rows="5" cols="30"></textarea></td><br/>
<td><textarea id="otherId" placeholder="Paste the SDP received" rows="5" cols="30"></textarea></td><br/>
</tr>
<br/>
</table>
<br/>
<div style="text-align: center;">
<button id="connect" style="width:20%" >connect</button><br/>
</div>
<table style="width:80%" border="1" align="center">
<tr>
<th>Enter Message:</th></br>
<th>Received Messages:</th></br>
</tr>
<tr>
<td><textarea id="yourMessage" cols ="40"></textarea></td></br>
<td><textarea id="Received" rows="10" cols="40"></textarea></td></br>
</tr>
</br>
</table>
</br>
<div style="text-align: center;">
<button id="send" style="width:20%">send</button></br>
</div>
<script src="bundle.js" charset="utf-8"></script>
</body>
</html>