Initial commit
This commit is contained in:
parent
9a1d04b6d6
commit
3d2130a17e
7 changed files with 4245 additions and 0 deletions
24
views/room.ejs
Normal file
24
views/room.ejs
Normal file
|
@ -0,0 +1,24 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
|
||||
<script>
|
||||
const ROOM_ID = "<%= roomId %>"
|
||||
</script>
|
||||
<script
|
||||
src="https://unpkg.com/peerjs@1.3.1/dist/peerjs.min.js"
|
||||
defer
|
||||
></script>
|
||||
<script src="/socket.io/socket.io.js" defer></script>
|
||||
<script src="script.js" defer></script>
|
||||
<link rel="stylesheet" href="style.css" />
|
||||
<title>Document</title>
|
||||
</head>
|
||||
<body>
|
||||
<nav><a href="#">Home</a></nav>
|
||||
<div id="videos"></div>
|
||||
<footer></footer>
|
||||
</body>
|
||||
</html>
|
Reference in a new issue