-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (31 loc) · 1.07 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Brigade Bureaulogique : Unité de Répression et d'Ordre</title>
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline';" />
<link rel="stylesheet" href="style/main.css">
</head>
<body>
<script src="js/game.js"></script>
<img id="main" src="img/bburo.png">
<div id="panel">
<p>
<label for="lvl-selector">Level: </label>
<input id="lvl-selector" type="number" style="width: 4em;" onchange="changeLevel">
<button onclick="addLevel">+</button>
<button onclick="deleteLevel">🗑️</button>
</p>
<p>
<label for="level-img">Image: </label>
<input id="lvl-img" type="file">
</p>
<p>
<label>Zones: </label>
<button onclick="addZone">+</button>
<div id="zone-list">
</div>
</p>
</div>
</body>
</html>