forked from LSUCS/LAN-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
chat.html
38 lines (35 loc) · 1.21 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
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script src="/js/date.js"></script>
<script src="/js/main.js?2424"></script>
<script src="/js/chat.js"></script>
<link rel="stylesheet" href="/css/main.css" />
<link rel="stylesheet" href="/css/chat.css" />
<style>
body {
background: non transparent;
pointer-events: none;
z-index: 20000;
}
#contact-list, .conversation-element {
pointer-events: auto;
z-index: 20000;
}
</style>
</head>
<body>
<!-- CHAT LOL -->
<div id="chat">
<div id="contacts" class="chatbar-element">
<div id="chat-offline">Chat Service Offline</div>
<div id="chat-online"><img src="/images/user.png" /><span id="contact-count"></span> contacts available</div>
</div>
<div id="contact-list">
<div id="online"></div>
<div id="offline"></div>
</div>
<div id="conversations"></div>
</div>
</body>
</html>