-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (43 loc) · 1.55 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
<!DOCTYPE html>
<html>
<head>
<title>Maffia Game Site</title>
<meta charset ="UTF-8">
<link rel="shortcut icon" type="image/jpg" href="maffia.ico"/>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="script.js" async=""></script>
</head>
<body>
<a id="slump" href="randomizeroles.html">Slumpa roller</a>
<div id="people">
<table id="Nominations">
</table>
<input type="text" id="Adding" placeholder="Player nominated" onkeydown="addPlayer(this)"/>
</div>
<div id="timers">
<p id="Day"> Dag 1</p>
<div id="DayTimer">
<span> Dag </span>
<span id="DayTime" class="pointer" onclick="startDay(this)">15:00</span>
</div>
<div id="DefenseTimer">
<span> Försvars </span>
<span id="Defense" class="pointer" onclick="startDefense(this)">02:00</span>
</div>
<div id="FiveTimer">
<span> 5-min </span>
<span id="Fivemin" class="pointer" onclick="startFive(this)">05:00</span>
</div>
<button type="button" onclick="resetTimers()">Nollställ timers</button>
<div id="FiveminDiv">
<p id="fem"> 5 minutare </p>
<div id="FiveminCheck">
<input type="checkbox" id="checkbox">
<input type="checkbox" id="checkbox">
<input type="checkbox" id="checkbox">
</div>
</div>
</div>
<button id="knapp" type="button" onclick="goToNext()">Gå till nästa dag</button>
</body>
</html>