-
Notifications
You must be signed in to change notification settings - Fork 0
/
meeting.html
143 lines (141 loc) · 4.45 KB
/
meeting.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Google Meet</title>
<link rel="stylesheet" href="public/assets/css/bootstrap.min.css" />
<link rel="icon" href="public/assets/images/favicons/favicon-32x32.png" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/icon?family=Material+Icons"
/>
<link rel="stylesheet" href="public/assets/css/style.css" />
<script src="/socket.io/socket.io.js"></script>
<script src="https://unpkg.com/[email protected]/dist/peerjs.min.js"></script>
</head>
<body>
<main class="main-wrap d-flex flex-column">
<div class="top-block text-light d-flex">
<div id="meeting" class="top-remote-video-show-wrap d-flex w-75"></div>
<div
class="
info
bg-light
text-secondary
d-flex
flex-column
align-items-center
"
>
<div class="info-header d-flex w-100 justify-content-around">
<div
class="info-parts pt-2 w-50 cursor-pointer text-center parts-btn"
>
<div class="info-parts">
<span class="material-icons">people</span>
<small id="userCount" class="info-parts__count">0</small>
</div>
</div>
<div class="pt-2 text-center cursor-pointer w-50 chat-btn">
<span class="material-icons">message</span>
</div>
</div>
<div
id="chat"
class="info-chat flex-column w-100 justify-content-between"
>
<div id="messages" class="info-messages"></div>
<div class="info-input pr-2 pl-2 pb-2">
<form>
<div class="form-row">
<div class="col">
<input
id="input"
type="text"
class="form-control"
placeholder="Сообщение"
/>
</div>
<button
type="submit"
class="btn btn-small btn-outline-danger"
>
<span class="material-icons-outlined"> ок </span>
</button>
</div>
</form>
</div>
</div>
<div id="parts" class="info-parts w-100">
<ul class="parts-list list-group list-group-flush"></ul>
</div>
</div>
</div>
<div
class="
bottom-block
bg-light
m-0
d-flex
justify-content-between
align-items-center
"
>
<div class="bottom-left d-flex">
<div class="display-center cursor-pointer flex-column show-btn">
<span class="material-icons">message</span>
Чат
</div>
<div class="display-center cursor-pointer flex-column show-btn">
<span class="material-icons">person</span>
Участники
</div>
</div>
<div
class="bottom-middle d-flex align-items-center justify-content-center"
>
<div
class="
mic-toggle
action-icon-style
display-center
mr-2
cursor-pointer
"
id="muteMicro"
>
<span class="material-icons">mic</span>
</div>
<div
class="video-toggle action-icon-style display-center cursor-pointer"
>
<span class="material-icons">videocam</span>
</div>
</div>
<div
class="bottom-right d-flex justify-content-center align-items-center"
>
<div
class="
logout
d-flex
justify-content-center
flex-column
align-items-center
mr-5
cursor-pointer
text-danger
"
>
<span class="material-icons"> logout </span>
Покинуть встречу
</div>
</div>
</div>
</main>
<script src="public/assets/js/index.js" type="module"></script>
<script src="public/assets/js/meeting.js"></script>
</body>
</html>