-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.php
58 lines (51 loc) · 1.59 KB
/
index.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>chat</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="result"></div>
<div id="show_case"></div>
<input type='hidden' value='' id='message_id'>
<div class="menu">
<ul>
<li>
<button disabled class="disabled" id="delete">delete</button>
</li>
<li>
<button disabled class="disabled" id="edit">edit</button>
</li>
</ul>
</div>
<div id="user_dash" style="visibility: visible">
<img src="emoji/cat.gif" height="100">
<br>
<div id="error" style="display: none"></div>
<textarea id="textaria" name="textaira" rows="15" cols="22"></textarea>
<br>
<div id="suggesstion-box"></div>
</div>
<div class="join" id="join">
<h3>join chat</h3>
<form method="post" id="user-form">
<input type="text" name="username" id="username" placeholder="your name?"><br>
<button class="btn" id="btn-submit">join</button>
</form>
</div>
<div style="clear: both"></div>
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/jquery.cookie.js"></script>
<script type="text/javascript" src="js/jquery.validate.min.js"></script>
<script src="js/chat.js"></script>
<script src="js/signup.js"></script>
<script src="js/contentmenu.js"></script>
<footer>
</footer>
</body>
<footer class="footer">
<p>fork this project at <a href="https://github.com/ultra2mh/php-ajax-chatroom">https://github.com/ultra2mh/php-ajax-chatroom</a></p>
</footer>
</html>