-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
59 lines (56 loc) · 1.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hankel</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="image/png" href="assets/icon.png" />
<script src="https://unpkg.com/konva@9.2.0/konva.min.js"></script>
</head>
<body>
<header>
<img src="assets/logo.png">
<h2>Hankel: a soccer planner.</h2>
</header>
<div class="break"></div>
<div class="menu">
<span>planner</span>
•
<a href="help">help</a>
</div>
<div class="break"></div>
<div class="editor">
<div class="playersContainer">
<div class="players" id="team1"></div>
<div class="players" id="team2"></div>
<div class="players" id="gk"></div>
</div>
<div>
<div id="planner"></div>
<div class="break"></div>
<div id="pitches"></div>
</div>
<div id="tools">
<input type="color" class="tool" id="colorPicker" />
<input id="uploadFile" type="file" accept=".hnkl" hidden />
</div>
<div id="equipments"></div>
</div>
<div class="break"></div>
<div>
<textarea type="text" id="notesInput" placeholder="Type notes..."></textarea>
</div>
<div class="break"></div>
<input type="checkbox" id="notesOption">
<label for="notesOption">Include notes in image</label>
<div class="break"></div>
<footer>
<p>
created by <a href="https://danielkshin.github.io" target="_blank">daniel shin</a><br>
with <a href="https://konvajs.org/" target="_blank">konva.js</a>
</p>
</footer>
<script src="script.js"></script>
</body>
</html>