-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (35 loc) · 1.88 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>
<meta charset="utf-8">
<script src="main.js"></script>
<title>member roullete</title>
</head>
<body>
<input type="checkbox" onClick="toggle(this, 'doctor')" checked /> D
<input type="checkbox" name="doctor" value="Nick" checked /> Nick <br>
<input type="checkbox" onClick="toggle(this, 'master2')" checked /> M2
<input type="checkbox" name="master2" value="Arthur" checked /> Arthur
<input type="checkbox" name="master2" value="Cho" checked /> Cho
<input type="checkbox" name="master2" value="Matsui" checked /> Matsui
<input type="checkbox" name="master2" value="Matsuo" checked /> Matsuo <br>
<input type="checkbox" onClick="toggle(this, 'master1')" checked /> M1
<input type="checkbox" name="master1" value="Effy" checked /> Effy
<input type="checkbox" name="master1" value="T.Yamamoto" checked /> T.Yamamoto
<input type="checkbox" name="master1" value="Takayanagi" checked /> Takayanagi
<input type="checkbox" name="master1" value="Kawasaki" checked /> Kawasaki
<input type="checkbox" name="master1" value="Ueda" checked />Ueda <br>
<input type="checkbox" onClick="toggle(this, 'bachelor4')" checked /> B4
<input type="checkbox" name="bachelor4" value="Kitamura" checked /> Kitamura
<input type="checkbox" name="bachelor4" value="Sato" checked /> Sato
<input type="checkbox" name="bachelor4" value="Sawada" checked /> Sawada
<input type="checkbox" name="bachelor4" value="Mizuho" checked /> Mizuho
<input type="checkbox" name="bachelor4" value="S.Yamamoto" checked /> S.Yamamoto
<input type="checkbox" name="bachelor4" value="Yoshimura" checked /> Yoshimura <br>
<br><label><input type="checkbox" id="pair_check">make pairs</label><br>
<input type="button" value="SHUFFLE" onClick="getQueue()" />
<p>
<span id="presentation_queue"></span>
</p>
</body>
</html>