-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (37 loc) · 1.29 KB
/
index.html
File metadata and controls
40 lines (37 loc) · 1.29 KB
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
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />
<meta charset="UTF-8">
<title>ChatApp</title>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="chat"> CHATAPP:
<div class="roomn">
<div class="roomn2">Room : </div>
<div class="roomn-nope">You are not connected, <br>
please give username and room
</div>
</div>
<input type="text" class="chat-name" placeholder="Username">
<input type="text" class="room-name" placeholder="Room name">
<div class="chat-messages">
<div class="chat-message">
</div>
</div>
<textarea placeholder="Press enter to send message"></textarea>
<div class="chat-status">Status: <span>Connected</span></div>
</div>
<script src="http://88.192.20.97:6060/socket.io/socket.io.js"></script>
<script src="http://88.192.20.97/chatapp2/javaengine2.js"></script>
<script src="http://88.192.20.97/chatapp2/javaengine.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script>
$("textarea").hide();
$(".chat-messages").hide();
$(".roomn2").hide();
</script>
</body>
</html>