-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
44 lines (42 loc) · 1.17 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Praten | Real Time Chatting 💬</title>
<link rel="stylesheet" href="/style.min.css" />
<link rel="icon" href="/favicon.ico" />
</head>
<body>
<main>
<div class="chat-container">
<div class="left">
<div class="info">
<div class="title-1">Room</div>
<div id="room-name">random room name</div>
<div class="title-2">Participants</div>
<div id="user-list"></div>
</div>
<a href="/">
<button>Leave Room</button>
</a>
</div>
<div class="right">
<div id="messages"></div>
<form id="form" action="" autocomplete="off">
<input id="input" type="text" autofocus />
<button type="submit">Send</button>
</form>
</div>
</div>
</main>
<div class="mobile">
<div class="container">
<p class="txt">This application is not compatible on mobile devices, please view on a desktop</p>
</div>
</div>
<script src="/socket.io/socket.io.js"></script>
<script src="/moment.js"></script>
<script src="/script.js"></script>
</body>
</html>