-
Notifications
You must be signed in to change notification settings - Fork 0
/
HTMLPage_Chat.html
45 lines (34 loc) · 1.4 KB
/
HTMLPage_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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title></title>
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://cdn.pubnub.com/pubnub-3.5.3.min.js"></script>
</head>
<body>
<div id="recever_username">dichov</div>
<div id="sender_username">pesho</div>
<div data-role="page" id="chatPage" data-theme="c" class="type-interior">
<div data-role="content">
<div data-role="header" data-position="fixed" data-tap-toggle="false">
<h1>Pub Chat</h1>
</div>
<div data-role="content">
<ul data-role="listview" id="conversation" class="conversation ">
</ul>
</div>
<div data-role="footer" data-theme="c">
<p>Create Massage:</p>
<textarea id="messageContent"></textarea>
<div class="ui-grid-a">
<div class="ui-block-a">
<a href="#" id="sendMessageButton" data-role="button">Send Message</a>
</div>
</div>
</div>
</div>
</div>
<script src="js/chat-script.js"></script>
</body>
</html>