-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPaulette.html
36 lines (33 loc) · 1.34 KB
/
Paulette.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Video-Voice and Chat application</title>
<link rel='stylesheet' href='https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css'>
</head>
<body>
<div class="container-fluid">
<div class="row h-90 w-100">
<div class="col-12 col-sm-6 d-flex justify-content-center">
<div class="embed-responsive embed-responsive-16by9">
<video class='embed-responsive-item'></video>
</div>
</div>
<div class="col-12 col-sm-6 d-flex justify-content-center">
<div id='peerDiv' class="embed-responsive embed-responsive-16by9">
</div>
</div>
<div class="col-12 col-sm-6 d-flex justify-content-start">
<div id='messagediv' class="embed-responsive embed-responsive-16by9">
<input id='messagedata' type='text' value=" ">
<button id='messagebutton' type='submit'> send message</button>
<div id='messagedisplay'></div>
</div>
</div>
</div>
</div>
<script src="/socket.io/socket.io.js"></script>
<script src="bundle.js"></script>
</body>
</html>