forked from arturkot/the-house-game
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpicker.html
More file actions
41 lines (24 loc) · 776 Bytes
/
picker.html
File metadata and controls
41 lines (24 loc) · 776 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
<!DOCTYPE html>
<html id="picker">
<head>
<meta charset="utf-8" />
<title>Pick tiles</title>
<link rel="stylesheet" type="text/css" href="css/styles.css" />
<script src="js/libs/jquery-1.7.min.js" ></script>
<script src="js/libs/jquery-ui-1.8.11.draggable.min.js" ></script>
<script src="js/dialogue_box.js" ></script>
<script src="js/tooltip.js" ></script>
<script src="js/room.js" ></script>
<script src="js/utility.js" ></script>
</head>
<body>
<div id="return"></div>
<div id="the_game">
<form id="grid_data">
<input type="text" value="x width" id="x" />
<input type="text" value="y width" id="y" />
<input type="submit" value="Generate!" id="submit" />
</form>
</div>
</body>
</html>