-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
58 lines (56 loc) · 1.49 KB
/
popup.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
55
56
57
58
<!doctype html>
<html>
<title>Poll.Ev Toolkit</title>
<link href="popupStyle.css" rel="stylesheet" type="text/css">
<head>
</head>
<body>
<h1>Poll.Ev Toolkit</h1>
<form name="form1" method="post" action="">
<p>
<label>
<input type="checkbox" name="Options" value= "checkbox" id="Play_Sound">
Play Sound On New Poll</label>
<br>
<label>
<input type="checkbox" name="Options" value="checkbox" id="Auto_Answer">
Automatically Select Answers</label>
<br>
</p>
</form>
<form name="form2" method="post" action="">
<p>
<label>
<input type="radio" name="Answer" value="radio" id="Ans_Random">
Random (Reccomended)</label>
<br>
<label>
<input type="radio" name="Answer" value="radio" id="Ans_A">
A</label>
<br>
<label>
<input type="radio" name="Answer" value="radio" id="Ans_B">
B</label>
<br>
<label>
<input type="radio" name="Answer" value="radio" id="Ans_C">
C</label>
<br>
<label>
<input type="radio" name="Answer" value="radio" id="Ans_D">
D</label>
<br>
<label>
<input type="radio" name="Answer" value="radio" id="Ans_E">
E</label>
<br>
</p>
</form>
<form name="form3" method="post" action="">
<input type="submit" name="Run" id="Run" value="Start Toolkit">
<input type="submit" name="Stop" id="Stop" value="Stop Toolkit">
</form>
<p> </p>
<script src="popup.js"></script>
</body>
</html>