blob: c14aa376454e8d999ffe1f3ad3990527dc3d29c9 (
plain)
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
|
<!doctype html>
<html>
<head>
<title>CocoPaint</title>
<link rel="stylesheet" href="/css/drawdrawdraw.css" type="text/css">
<link rel="stylesheet" href="/css/chat.css" type="text/css">
<script type="text/javascript" src="/js/jquery-1.9.1.min.js"></script>
<script type="text/javascript" src="/socket.io/socket.io.js"></script>
<script type="text/javascript" src="/js/util.js"></script>
<script type="text/javascript" src="/js/auth.js"></script>
<script type="text/javascript" src="/js/color.js"></script>
<script type="text/javascript" src="/js/draw.js"></script>
<script type="text/javascript" src="/js/chat.js"></script>
<script type="text/javascript" src="/js/game.js"></script>
</head>
<body>
<h1>Cocopaint</h1>
<div id="chat_container">
<div id="chat"><div id="chat_shim"></div></div>
<div id="form">
<input type="text" id="chat-message" maxlength="200"/>
<!--
<div id="emoticons"></div>
<img id="open-emoticons" src="/img/emoticons/happy.gif">
-->
</div>
</div>
<div id="login" class="curtain">
<div class="inner">
Welcome to Cocopaint!
<br>
<br>
Enter your name to start playing..
<br><br>
<input type="text" id="username">
<br><br>
<button id="login-go">GO</button>
</div>
</div>
<div id="drawing">
<canvas id="workspace" width="400" height="200">
<div id="palette">
</div>
</div>
</body>
</html>
|