-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (39 loc) · 965 Bytes
/
index.html
File metadata and controls
51 lines (39 loc) · 965 Bytes
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
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<script src="kinvey-example.js"></script>
</head>
<body>
<a id="buttonLoad" href="#">[Load]</a>
<br />
<br />
<div>
<select id="listBoxMazes" size="5">
<option>Maze 1</option>
<option>Maze 2</option>
<option>Maze 3</option>
</select>
</div>
<a id="buttonSelect" href="#"></a>
<br/>
<br/>
<div>
<div>Name: <input type="text" id="textBoxMazeName" /></div>
<div>Data: <input type="text" id="textBoxMazeData" /></div>
<a id="buttonAdd" href="#">[Add]</a>
</div>
<br/>
<br/>
<div id="maze">
<div id="app"></div>
<script src="index.js"></script>
<defs>
<g id="circle">
<circle cx="50" cy="50" r="40" stroke="black" stroke-width="3" fill="red" />
</g>
</defs>
</div>
</body>
</html>