blob: bd75ab142e726d46c746e0ad61d4b03fc87f383c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<html>
<head>
<title>Pichat</title>
<link rel="stylesheet" type="text/css" href="static/reset.css">
<link rel="stylesheet" type="text/css" href="static/pichat.css">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="static/pichat.js"></script>
<script>
$(document).ready(function() {
$('#join').click(join);
$('#nick').keyup(ifEnter(join));
});
</script>
</head>
<body>
<div id="content">
<h1>Welcome to Pichat!</h1>
<input type="text" name="nick" id="nick">
<input type="submit" value="Join" id="join">
<img id="loginspinner" src="static/spinner.gif" style="display: none" />
</div>
</body>
</html>
|