-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (30 loc) · 1.1 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/konva/konva.min.js"></script>
<script src="konva.js"></script>
<link rel="stylesheet" href="garden.css">
</head>
<body>
<h1><span id="plant_count">0</span> Plants</h1>
<form id="form" method="post">
<select id="plant_spacing">
<option value="2">Radishes, 2"</option>
<option value="3">Carrots, 3"</option>
<option value="4">Onions, 4"</option>
<option value="6">Lettuce, 6"</option>
<option value="8">Chard, 8"</option>
<option value="15" selected="selected">Kale, 15"</option>
<option value="18">Summer Squash, 18"</option>
</select>
<label for="width">Width</label>
<input type="text" name="width" value="4" id="width" />
<label for="width">Height</label>
<input type="text" name="height" value="8" id="height" />
<button type="submit" name="button" id="plant">Plant</button>
</form>
<div id="draw-shapes"></div>
</body>
</html>