-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·37 lines (37 loc) · 1.33 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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<link href="style.css" rel="stylesheet" type="text/css"/>
<meta name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=10.0, user-scalable=yes">
<title>SlackBingo</title>
<script type="text/javascript" src="./js/script.js"></script>
</head>
<body onload="initCheckbox()">
<header>
<div id="nav-drawer">
<input id="nav-input" type="checkbox" class="nav-unshown">
<label id="nav-open" for="nav-input"><span></span></label>
<label class="nav-unshown" id="nav-close" for="nav-input"></label>
<div id="nav-content">
<form id="box">
<input type="button" id="post-member" class="btn-add" value="Add" onclick="getCheckbox()">
</form>
</div>
</div>
</header>
<div id="main">
<h1>Next...</h1>
<div class="button">
<form>
<input type="button" id="start" name="start" value="Start" onclick="startBingo()">
<input type="button" id="stop" name="stop" value="Stop" onclick="stopBingo()" style="display:none;">
<input type="button" id="reset" name="reset" value="Reset" onclick="resetBingo()" style="display:none;">
</form>
</div>
<div id="view"></div>
<ul id="out"></ul>
</div>
</body>
</html>