-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (40 loc) · 1.5 KB
/
index.html
File metadata and controls
44 lines (40 loc) · 1.5 KB
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
<!DOCTYPE html>
<html lang="cs">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Car Track Builder</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="app-container">
<section class="screen menu-screen" id="menuWindow">
<h1>Car Track Builder</h1>
<div class="button-group">
<button class="btn btn-primary" id="NewMapBTN">Nová mapa</button>
<button class="btn btn-secondary" id="LoadMapBTN">Načíst mapu</button>
</div>
</section>
<section class="screen hidden" id="loadModal">
<h2>Uložené mapy</h2>
<div id="savedMapsList">
</div>
<button class="btn btn-back" id="closeLoadBTN">Zavřít</button>
</section>
<section class="screen editor-screen hidden" id="editorWindow">
<header class="editor-header">
<h2>Editor tratě</h2>
<div class="editor-controls">
<button class="btn btn-save" id="saveBTN">Uložit</button>
<button class="btn btn-back" id="backBTN">Zpět do menu</button>
</div>
</header>
<div class="grid-wrapper">
<div id="mapGrid"></div>
</div>
</section>
</div>
<script src="script.js"></script>
</body>
</html>