-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchat.html
67 lines (61 loc) · 2.45 KB
/
chat.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chatapp</title>
<link rel="stylesheet" type="text/css" href="css/styles.min.css">
</head>
<body>
<div class="chat">
<div id="sidebar" class="chat__sidebar">
</div>
<div class="chat__main">
<div id="messages" class="chat__messages">
</div>
<div class="compose">
<form id="form-message" class="form-inline">
<input name="message" placeholder="Type Your message" autocomplete="off" required>
<input type="file" id="siofu_input" name="myfile" accept="image/*" style="display:none">
<button class="form-control input-lg">send</button>
</form>
<button id="btn-send-img" class="form-control input-lg">send Image</button>
<button id="btn-send-location" class="input-lg">Send Location</button>
</div>
</div>
</div>
<script id="message-template" type="text/html">
<div class="message">
<p>
<span class="message__name">{{username}} </span>
<span class="message__meta"> - {{createdAt}}</span>
</p>
<p>{{message}}</p>
</div>
</script>
<script id="locationMess-template" type="text/html">
<div class="message">
<p>
<span class="message__name">{{username}} </span>
<span class="message__meta"> - {{createdAt}}</span>
</p>
<p><a href="{{& locMessage }}" target="_blank">My Current Location </a></p>
</div>
</script>
<script id="sidebar-template" type="text/html">
<h2 class="room-title">{{room}}</h2>
<h3 class="list-title">Users</h3>
<ul class="users">
{{#users}}
<li>{{username}}</li>
{{/users}}
</ul>
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mustache.js/3.0.1/mustache.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.22.2/moment.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/qs/6.6.0/qs.min.js"></script>
<script src="./socket.io/socket.io.js"></script>
<script src="/siofu/client.js"></script>
<script src="/js/chat.js"></script>
</body>
</html>