-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 1.34 KB
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>NodeJS + Typescript + SASS</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<link rel='stylesheet' type='text/css' media='screen' href='dist/styles/index.css'>
</head>
<body>
<div class="container">
<div class="row mb-3 mt-3 justify-content-md-center">
<div id="user-name"></div>
<button id="call" class="btn btn-primary col-1">Call!</button>
<button id="hangup" class="col-1" class="btn btn-primary">Hangup</button>
<div id="answer" class="col"></div>
</div>
<div id="videos">
<div id="video-wrapper">
<div id="waiting" class="btn btn-warning">Waiting for answer...</div>
<video class="video-player" id="local-video" autoplay playsinline controls></video>
</div>
<video class="video-player" id="remote-video" autoplay playsinline controls></video>
</div>
</div>
</body>
<script src='dist/client/app.js' type="module" defer></script>
</html>