-
Notifications
You must be signed in to change notification settings - Fork 0
/
tstpoll.html
82 lines (71 loc) · 2.98 KB
/
tstpoll.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Test Polling with Open Agora</title>
</head>
<body>
<h1 id="messages"></h1>
<button id="poll-info">Poll Info</button>
<button id="credit-info">Credit Info</button>
<button id="get-results">Get Results</button>
<!--<button id="get-chart">Update Chart</button>
<button id="show-chart">Show Chart</button>-->
<button id="update-pollId">Update Poll</button>
<button id="close-poll">Close Poll</button>
<button id="delete-votes">Reset Poll</button>
<br><br><br>
<div id="voting-container" style="background-color:lightblue">
<form id="voting-form">
<label for="amount">Amount:</label>
<input type="text" id="amount" name="amount">
</form>
<br>
<div id="button-container">
<!--<button id="vote-1">Clutch</button>
<button id="vote-2">Black Keys</button>
<button id="vote-3">Wood Bros</button>
<button id="vote-4">The Struts</button>
<button id="vote-5">Blues Traveler</button>
<button id="vote-6">Rival Sons</button>
<button id="vote-7">That 1 Guy</button>
<button id="vote-8">Keller Williams</button>
<button id="vote-9">William Elliott</button>
<button id="vote-10">Dirty Honey</button>-->
<button id="donate-button">Donate</button>
</div>
<div id="select-container">
<label for="bands">Choose a band:</label>
<select name="bands" id="bands">
<option value="vote-1">Clutch</option>
<option value="vote-2">The Black Keys</option>
<option value="vote-3">The Wood Brothers</option>
<option value="vote-4">The Struts</option>
<option value="vote-5">Blues Traveler</option>
<option value="vote-6">Rival Sons</option>
<option value="vote-7">That 1 Guy</option>
<option value="vote-8">Keller Williams</option>
<option value="vote-9">William Elliott</option>
<option value="vote-10">Dirty Honey</option>
</select>
</div>
</div>
<!-- <div id="button-container">
<button id="vote-1">Vote 1</button>
<button id="vote-2">Vote 2</button>
<button id="vote-3">Vote 3</button>
<button id="vote-4">Vote 4</button>
<button id="vote-5">Vote 5</button>
<button id="vote-6">Vote 6</button>
<button id="vote-7">Vote 7</button>
<button id="vote-8">Vote 8</button>
<button id="vote-9">Vote 9</button>
<button id="vote-10">Vote 10</button>
</div> -->
<div id="chart-container"></div>
<div id="chart_div"></div>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script src="./poll.js"></script>
</body>
</html>