-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (67 loc) · 2.28 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
63
64
65
66
67
68
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>Multiplayer Paint</title>
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<div id="paintapp">
<div id="header">
<div id="nav"></div>
<div id="tools">
<ul>
<li><div id="tool_New">New</div></li>
<li><div id="tool_Pencil" class="selected">Pencil</div></li>
<li><div id="tool_Line">Line</div></li>
<li><div id="tool_Rect">Rectangle</div></li>
<li id="tool_color"><div id="cur_color"><span style="background: #000000"></span></div><div id="colors">
<ul>
</ul>
</div></li>
<li><div id="tool_size"><div id="cur_size"><span class="brush medium"></span></div>
<div id="sizes">
<ul>
<li><span class="brush small" size="small"></span></li>
<li><span class="brush medium" size="medium"></span></li>
<li><span class="brush big" size="big"></span></li>
<li><span class="brush huge" size="huge"></span></li>
</ul>
</div>
</div>
</li>
<li><div id="link"></div></li>
</ul>
</div>
</div>
<div id="main">
<div id="paintbox">
<canvas id="image">
<p>Unfortunately, your browser is currently unsupported by our web
application. We are sorry for the inconvenience. Please use one of the
supported browsers listed below, or draw the image you want using an
offline tool.</p>
<p>Supported browsers: <a href="http://www.opera.com">Opera</a>, <a
href="http://www.mozilla.com">Firefox</a>, <a
href="http://www.apple.com/safari">Safari</a>, and <a
href="http://www.konqueror.org">Konqueror</a>.</p>
</canvas>
</div>
<div id="chatbox">
<ul id="userlist"><li id="ole">ole</li></ul>
<ul id="chat">
</ul>
<input id="message" type="text" />
</div>
</div>
</div>
<div id="login">
<label for="username">Username</label>
<input type="text" id="username" name="username" />
<input type="submit" id="submit" value="OK" />
</div>
<script type="text/javascript" src="/jquery.min.js"></script>
<script type="text/javascript" src="/socket.io/socket.io.js"></script>
<script type="text/javascript" src="/paintapp.js"></script>
<script type="text/javascript" src="/networking.js"></script>
</body>
</html>