-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathchat.html
executable file
·46 lines (44 loc) · 1.58 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
39
40
41
42
43
44
45
46
<!doctype xhtml>
<!--[if lt IE 7 ]> <html class="ie6" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <![endif]-->
<!--[if IE 7 ]> <html class="ie7" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <![endif]-->
<!--[if IE 8 ]> <html class="ie8" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--> <html lang="en" xmlns="http://www.w3.org/1999/xhtml"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta http-equiv="Cache-control" content="no-cache"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<!-- Mobile viewport optimized: j.mp/bplateviewport -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>emups</title>
<link type="text/css" rel="stylesheet" href="style.css?v=2"/>
<link type="text/css" rel="stylesheet" href="tpstyle.css"/>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
<script type="text/javascript" src="tpchat.js"></script>
</head>
<body>
<div class="msgs">
<div id="log"></div>
<div id="sendbar">
<form id="f">
<hr/>
<table class="msg">
<tr>
<td class="time">
<button id="b" name="s" type="submit">%(nickname)s</button>
<br/><a href="/logout">logout</a>
</td>
<td class="contents">
<input class="contents" id="chatline" type="text" autocomplete="off" />
</td>
</tr>
</table>
</form>
</div>
<div id="error">
<span class="errmsg">Disconnected (<a href="/">re-login</a>)</span>
<div id="local"></div>
<div id="remote"></div>
</div>
</body>
</html>