-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
43 lines (40 loc) · 1.44 KB
/
main.html
File metadata and controls
43 lines (40 loc) · 1.44 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>
{% load static %}
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="{% static 'css/main.css' %}">
</head>
<body>
<h3 id="label-username">USERNAME</h3>
<div>
<input type="text" name="" id="username">
<button id="btn-join">Join Room</button>
</div>
<div class="main-grid-container">
<div id="video-container">
<div>
<video id="local-video" src="" style="float: left;" autoplay playsinline></video>
</div>
<button id="btn-toggle-audio">Audio Mute</button>
<button id="btn-toggle-audio">Video Off</button>
</div>
<div id="chat">
<h3>Chat</h3>
<div id="messages">
<ul id="message-list"></ul>
</div>
<div>
<input class="msg" type="text" name="" id="">
<button id="btn-send-msg">Send Message</button>
</div>
<button id="btn-share-screen">Share Screen</button>
</div>
</div>
<script src="" async defer></script>
</body>
</html>