-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
93 lines (92 loc) · 3.44 KB
/
popup.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
<!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>Document</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="styles/interface.css" />
</head>
<body>
<div class="parent-container">
<div class="chat-container" id="chatview">
<div class="chat-input-container input-group">
<input
class="form-control"
id="input-msg"
type="text"
placeholder="Type your message here"
/>
<button
type="button"
class="btn btn-light"
id="send-button"
>
send
</button>
</div>
<div class="chat-history-container" id="chc">
<!-- <div class="chat-history">
<p>Abhishek : Hey there</p>
</div>
<div class="chat-history">
<p>Surbhi : How you doing</p>
</div> -->
</div>
</div>
<div class="top-bar-chat">
<div>
<button
type="button"
class="btn btn-light btn-sm"
id="exitRoom-button"
>
Exit
</button>
</div>
<div class="roomcode-area">
<h2 id="roomcode-code"></h2>
</div>
</div>
<div class="login-container-holder" id="loginview">
<div class="login-container">
<p>
Open a new room with unique roomcode<br />
or join one that you know.
</p>
<div class="input-container">
<input
class="form-control login-text-input"
type="text"
name="username"
id="username"
placeholder="User Name"
/>
<input
class="form-control login-text-input"
type="text"
name="roomcode"
id="roomcode"
placeholder="Room Code"
/>
<button
type="submit"
class="btn btn-dark login-text-button"
id="enter-room"
>
Enter Room
</button>
</div>
</div>
</div>
</div>
<script src="./scripts/joinroom.js"></script>
<script src="./scripts/chat.js"></script>
</body>
</html>