This repository has been archived by the owner on Nov 19, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·62 lines (61 loc) · 1.9 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densityDpi=device-dpi" />
<link rel="stylesheet" type="text/css" href="css/jquery.mobile-1.0.min.css" />
<link rel="stylesheet" type="text/css" href="css/messenger.css" />
<script src="jquery-1.6.min.js"></script>
<script src="jquery.mobile-1.2.min.js"></script>
<title>jIM</title>
</head>
<body>
<div data-role="page" id="home">
<div data-role="header" data-theme="d">
<h1> Messenger </h1>
<a href="#" data-icon="refresh" id="refresh">Refresh</a>
<a href="#chats" data-icon="grid" data-transition="flow">Chats</a>
</div>
<div data-role="content">
</div>
</div>
<div data-role="page" id="chats">
<div data-role="header" data-theme="d">
<h1> Chats </h1>
<a href="#" data-icon="home" id="home">Home</a>
<a href="#" data-icon="delete" id="clear">Clear</a>
</div>
<div data-role="content">
<ul data-role="listview">
</ul>
</div>
</div>
<div data-role="dialog" id="login">
<div data-role="header">
<h1>Login</h1>
</div>
<div data-role="content">
<p class="info1">
Choose your login
</p>
<span class="span-input">Login </span>
<input type="text"/><br/>
<a href="#" data-role="button" class="ok"> Okay! </a>
</div>
</div>
<div data-role="dialog" id="msg">
<div data-role="header">
<h1>Message</h1>
</div>
<div data-role="content">
<p class="info1">
Enter your message
</p>
<span class="span-input">Message </span>
<input type="text"/><br/>
<a href="#" data-role="button" class="ok"> Okay! </a>
</div>
</div>
<script src="messenger.js"></script>
</body>
</html>