-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (54 loc) · 2.28 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
<html>
<head>
<title>Developer Challenge</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="/dist/main.css">
</head>
<body>
<div class="setup">
<div class="sides"></div>
<form id="setup-form" action="">
<h1>Kamertje verhuren</h1>
<hr/>
<div class="setup__players">
<div class="player">
<div class="input">
<label for="player-1-name">Speler 1</label>
<input type="text" class="player-name" id="player-1-name" name="player-1-name" autocomplete="off" required>
</div>
<div class="input">
<label for="player-1-color">Kies een kleur</label>
<input type="color" class="player-color" id="player-1-color" name="player-1-color" autocomplete="off" value="#f6b73c" tabindex="-1">
</div>
</div>
<div class="player">
<div class="input">
<label for="player-2-name">Speler 2</label>
<input type="text" class="player-name" id="player-2-name" name="player-2-name" autocomplete="off" required>
</div>
<div class="input">
<label for="player-2-color">Kies een kleur</label>
<input type="color" class="player-color" id="player-2-color" name="player-2-color" autocomplete="off" value="#e66465" tabindex="-1">
</div>
</div>
</div>
<hr/>
<div class="setup__grid">
<div class="input">
<label for="setup-grid">Grid grootte</label>
<input type="range" id="setup-grid" min="2" max="6" value="3">
<span id="setup-grid__preview">3</span>
</div>
</div>
<hr/>
<div class="setup__actions">
<input type="reset" value="reset">
<input type="submit" value="beginnen">
</div>
</form>
</div>
<div id="game"></div>
<script src="/dist/app.js"></script>
</body>
</html>