-
Notifications
You must be signed in to change notification settings - Fork 0
/
round2.html
151 lines (148 loc) · 6.42 KB
/
round2.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>GEOGloWS Forecast Game</title>
<script src="/static/js/main.js"></script>
<link rel="stylesheet" href="/static/css/main.css">
</head>
<body>
<div class="body-container">
<div class="navbar">
<header>
<nav>
<ul>
<li><a href="index.html">Rules</a></li>
</ul>
</nav>
</header></div>
<h1>Serious Game: 10 days before predicted flood event.</h1><br>
<img src="static/img/round2/day_10.png"
alt="Hydrograph predicting a two-year return period in ten days based on the high resolution forecast trend line.">
<p>Damage and Casualty Prevention:
Check the boxes of the responses that you feel best help the community based on today's forecast.</p>
<table id="checkboxTable">
<tr>
<th>Days of Anticipation</th>
<th>10 Days</th>
<th>9 Days</th>
<th>8 Days</th>
<th>7 Days</th>
<th>6 Days</th>
<th>5 Days</th>
<th>4 Days</th>
<th>3 Days</th>
<th>2 Days</th>
<th>1 Day</th>
<th>Totals</th>
</tr>
<tr>
<th>Prepositioning</th>
<td><label><input type="checkbox" value="25000" id="10-P" onclick="handleCheckboxSelections()">$25,000</label>
</td>
<td><label><input type="checkbox" value="30000" id="9-P" onclick="handleCheckboxSelections()">$30,000</label>
</td>
<td><label><input type="checkbox" value="35000" id="8-P" onclick="handleCheckboxSelections()">$35,000</label>
</td>
<td><label><input type="checkbox" value="37500" id="7-P" onclick="handleCheckboxSelections()">$37,500</label>
</td>
<td><label><input type="checkbox" value="40000" id="6-P" onclick="handleCheckboxSelections()">$40,000</label>
</td>
<td><label><input type="checkbox" value="45000" id="5-P" onclick="handleCheckboxSelections()">$45,000</label>
</td>
<td><label><input type="checkbox" value="50000" id="4-P" onclick="handleCheckboxSelections()">$50,000</label>
</td>
<th><label>-</label></th>
<th><label>-</label></th>
<th><label>-</label></th>
<td id="row1Total"></td>
</tr>
<tr>
<th>Place Sandbags</th>
<td><label><input type="checkbox" value="30000" id="10-S" onclick="handleCheckboxSelections()">$30,000</label>
</td>
<td><label><input type="checkbox" value="35000" id="9-S" onclick="handleCheckboxSelections()">$35,000</label>
</td>
<td><label><input type="checkbox" value="40000" id="8-S" onclick="handleCheckboxSelections()">$40,000</label>
</td>
<td><label><input type="checkbox" value="45000" id="7-S" onclick="handleCheckboxSelections()">$45,000</label>
</td>
<td><label><input type="checkbox" value="50000" id="6-S" onclick="handleCheckboxSelections()">$50,000</label>
</td>
<td><label><input type="checkbox" value="55000" id="5-S" onclick="handleCheckboxSelections()">$55,000</label>
</td>
<td><label><input type="checkbox" value="60000" id="4-S" onclick="handleCheckboxSelections()">$60,000</label>
</td>
<td><label><input type="checkbox" value="65000" id="3-S" onclick="handleCheckboxSelections()">$65,000</label>
</td>
<th><label>-</label></th>
<th><label>-</label></th>
<td id="row2Total"></td>
</tr>
<tr>
<th>Alert Community</th>
<td><label><input type="checkbox" value="45000" id="10-A" onclick="handleCheckboxSelections()">$45,000</label>
</td>
<td><label><input type="checkbox" value="32000" id="9-A" onclick="handleCheckboxSelections()">$32,000</label>
</td>
<td><label><input type="checkbox" value="29000" id="8-A" onclick="handleCheckboxSelections()">$29,000</label>
</td>
<td><label><input type="checkbox" value="26000" id="7-A" onclick="handleCheckboxSelections()">$26,000</label>
</td>
<td><label><input type="checkbox" value="23000" id="6-A" onclick="handleCheckboxSelections()">$23,000</label>
</td>
<td><label><input type="checkbox" value="20000" id="5-A" onclick="handleCheckboxSelections()">$20,000</label>
</td>
<td><label><input type="checkbox" value="22000" id="4-A" onclick="handleCheckboxSelections()">$22,000</label>
</td>
<td><label><input type="checkbox" value="25000" id="3-A" onclick="handleCheckboxSelections()">$25,000</label>
</td>
<td><label><input type="checkbox" value="30000" id="2-A" onclick="handleCheckboxSelections()">$30,000</label>
</td>
<td><label><input type="checkbox" value="40000" id="1-A" onclick="handleCheckboxSelections()">$40,000</label>
</td>
<td id="row3Total"></td>
</tr>
<tr>
<th>Evacuate Community</th>
<td><label><input type="checkbox" value="100000" id="10-E" onclick="handleCheckboxSelections()">$100,000</label>
</td>
<td><label><input type="checkbox" value="95000" id="9-E" onclick="handleCheckboxSelections()">$95,000</label>
</td>
<td><label><input type="checkbox" value="85000" id="8-E" onclick="handleCheckboxSelections()">$85,000</label>
</td>
<td><label><input type="checkbox" value="80000" id="7-E" onclick="handleCheckboxSelections()">$80,000</label>
</td>
<td><label><input type="checkbox" value="75000" id="6-E" onclick="handleCheckboxSelections()">$75,000</label>
</td>
<td><label><input type="checkbox" value="70000" id="5-E" onclick="handleCheckboxSelections()">$70,000</label>
</td>
<td><label><input type="checkbox" value="65000" id="4-E" onclick="handleCheckboxSelections()">$65,000</label>
</td>
<td><label><input type="checkbox" value="60000" id="3-E" onclick="handleCheckboxSelections()">$60,000</label>
</td>
<td><label><input type="checkbox" value="90000" id="2-E" onclick="handleCheckboxSelections()">$90,000</label>
</td>
<td><label><input type="checkbox" value="120000" id="1-E" onclick="handleCheckboxSelections()">$120,000</label>
</td>
<td id="row4Total"></td>
</tr>
<tr>
<th>Total</th>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td id="overallTotal"></td>
</tr></table>
<br>
<button onclick="nextDay(2)">Next Day</button>
</div>
</body>
</html>