-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
50 lines (39 loc) · 1.45 KB
/
index.php
File metadata and controls
50 lines (39 loc) · 1.45 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
41
42
43
44
45
46
47
48
49
50
<?php
include_once("interface.php");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Personal Chat -- BOTSAPP</title>
<link rel="stylesheet" type="text/css" href="css/index.css">
<script type="text/javascript" src="js/index.js"></script>
<script type="text/javascript" src="/js/lib/_classes.js"></script>
<script type="text/javascript" src="/js/lib/_status.js"></script>
</head>
<body>
<div class="center">
<!-- chat-box -->
<main class="chat-box bg-img">
<!-- chat-list -->
<section class="inbox">
<div class="page-title">
<h2 id="cname">Personal Chat</h2>
<img class="icon ele createNewGroupBtn" data-show="false" src="/img/icons/options/plus.png" title="Create New Group">
</div>
<div class="hr"></div>
<!-- search-box -->
<div class="search">
<input type="search" name="chatSearch" placeholder="search" autocomplete="off" accesskey="f">
</div>
<table class="list" id="chatterList" title="Chatter List">
<tbody class="listBody">
</tbody>
</table>
</section>
<!-- opened-chat -->
<section class="chat">
</section>
</main>
</div>
</body>
</html>