forked from eclipse-oct/open-collaboration-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 707 Bytes
/
index.html
File metadata and controls
25 lines (25 loc) · 707 Bytes
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
<!-- src/index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Monaco Editor</title>
</head>
<body>
<div id="container" style="width:800px;height:600px;"></div>
<div>
<button id="create">Create Room</button>
<input type="text" id="token" readonly>
<input type="text" id="room" placeholder="Room Number">
<button id="join">Join Room</button>
</div>
<div>
<button id="login">Login</button>
<div id="user"></div>
</div>
<script type="module">
import "open-collaboration-monaco/example"
</script>
</body>
</html>