-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
37 lines (36 loc) · 874 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Ogar client test</title>
<script src="client.js"></script>
<style type="text/css">
canvas {
border: 1px dashed black;
}
body {
margin:0;
padding:0;
}
#leaderboard {
position:absolute;
}
#title {
text-align:center;
}
</style>
</head>
<body>
<div id="main">
<h3 id="title">Ogar client</h3>
<div id="leaderboard">board</div>
<canvas id="canvas" width="800" height="200"></canvas>
<br/>
<input type="text" value="ws://ogar.bernigaud.eu" id="url" name="url"/>
<input type="text" value="ogarclient" id="nickname" name="nickname"/>
<input type="button" onclick="javascript:connect();" value="connect"/>
</div>
<footer>
</footer>
</body>
</html>