-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcola.html
381 lines (358 loc) · 10.7 KB
/
cola.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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
<!doctype html>
<html lang="en">
<head>
<title>course fee</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
</head>
<body>
<div class="container" style="max-width: 800px;">
<div class="card" style="margin-top: 50px;">
<h5 class="card-header">Cost adjustment by location</h5>
<div class="card-body">
<div>
<br> At Neuromatch, our mission is to democratize education and research in the computational sciences globally. Our course fees are essential to sustaining our programs. The fees go directly to sustaining the Academy and supporting the Teaching Assistants (TAs) who dedicate an entire month to teaching you. Without these course fees, Neuromatch would not be able to operate.
<br>
<br> To ensure accessibility, we use a regional fee adjustment model based on GDP per capita data from the <a href=https://data.worldbank.org/indicator/NY.GDP.PCAP.CD>WorldBank</a>. This model allows participants from diverse socioeconomic and geographical backgrounds to access our courses, making high-quality education truly global.
<br>
<br> Most professors and universities directly pay these fees from grant or education funds. Make sure to start the conversation now with your supervisor about covering the cost of the course. If you need assistance in requesting reimbursement, we provide an instruction guide in our payment portal.
<br>
<br> If you are unable to secure reimbursement after exploring all available options, we will reduce your course fee by 50%. In exceptional circumstances, individuals who cannot afford the reduced fee may apply for an additional hardship discount through the payment portal.
<br>
<br> Please note that a non-refundable processing fee (also subject to regional fee adjustments) is required to cover administrative costs. You can find our Course Refund Policy <a href="https://docs.neuromatch.io/p/GJuBoDwfThwsFN/Course-Refund-Policy" target="_blank">here</a>.
<br>
<br> Please use the menus below to view your course fee.
<br>
</div>
<br>
<span style = "font-size:13pt;"><i> Job type:</i></span> <select class="js-Selector1" onchange="onChange()" id='job'>
</select>
<br>
<span style = "font-size:13pt;"><i> Country of residence:</i></span> <select class="js-Selector0" onchange="onChange()" id='country'>
</select>
<br>
<span style = "font-size:13pt;"><i> Will your tuition fee be paid for or reimbursed by your employer or supervisor? </i></span> <select class="js-Selector2" onchange="onChange()" id='fund'>
</select>
<br>
<span style = "font-size:13pt;"><i> Which course are you taking? </i></span> <select class="js-Selector3" onchange="onChange()" id='course'>
</select>
<br><br>
<p>
<div style="display: flex; justify-content: space-between; max-width: 350px;">
<span style = "font-size:13pt;">Base course fee:</span><span id="costs"></span>
</div>
</p>
<p>
<div style="display: flex; justify-content: space-between; max-width: 350px;">
<span style = "font-size:13pt;"><i>Processing fee (non-refundable):</i></span><span id="processing-costs"></span>
</div>
</p>
<p>
<div style="display: flex; justify-content: space-between; max-width: 350px;">
<span style = "font-size:13pt;"><b>Total course fee:</b></span><span id="total-costs"></span>
</div>
</p>
<div>
<br>
* If you have issues with the website please try the Chrome browser.
<br>
If you have any questions please email us <a href="mailto:[email protected]" target="_blank">[email protected]</a>
</div>
<script>
// Adapted from https://matall.in/posts/building-an-usable-timezone-selector/
const _t = (s) => {
if (i18n !== void 0 && i18n[s]) {
return i18n[s];
}
return s;
};
const countries = [
"Baseline Fee", 1.0,
"Afghanistan", 0.1,
"Aland Islands", 1.0,
"Albania", 0.1,
"Algeria", 0.1,
"American Samoa", 0.2,
"Andorra", 0.9,
"Angola", 0.1,
"Antigua and Barbuda", 0.3,
"Argentina", 0.2,
"Armenia", 0.1,
"Aruba", 0.5,
"Australia", 1.0,
"Austria", 1.0,
"Azerbaijan", 0.2,
"Bahamas", 0.6,
"Bahrain", 0.4,
"Bangladesh", 0.1,
"Barbados", 0.3,
"Belarus", 0.2,
"Belgium", 0.9,
"Belize", 0.1,
"Benin", 0.1,
"Bermuda", 1.0,
"Bhutan", 0.1,
"Bolivia", 0.1,
"Bonaire", 0.4,
"Bosnia and Herzegovina", 0.2,
"Botswana", 0.2,
"Brazil", 0.2,
"British Virgin Islands", 0.6,
"Brunei", 0.6,
"Bulgaria", 0.2,
"Burkina Faso", 0.1,
"Burundi", 0.1,
"Cabo Verde", 0.1,
"Cambodia", 0.1,
"Cameroon", 0.1,
"Canada", 1.0,
"Cayman Islands", 1.0,
"Central African Republic", 0.1,
"Chad", 0.1,
"Chile", 0.3,
"China", 0.2,
"Colombia", 0.2,
"Costa Rica", 0.2,
"Croatia", 0.3,
"Curacao", 0.4,
"Cyprus", 0.6,
"Czechia", 0.5,
"Democratic Republic of the Congo", 0.1,
"Denmark", 1.0,
"Djibouti", 0.1,
"Dominica", 0.2,
"Dominican Republic", 0.2,
"Ecuador", 0.1,
"Egypt", 0.1,
"El Salvador", 0.1,
"Equatorial Guinea", 0.2,
"Eritrea", 0.1,
"Estonia", 0.4,
"Eswatini", 0.1,
"Ethiopia", 0.1,
"Faroe Islands", 1.0,
"Fiji", 0.1,
"Finland", 0.9,
"France", 0.8,
"French Guiana", 0.1,
"French Polynesia", 0.3,
"Gabon", 0.2,
"Gambia", 0.1,
"Georgia", 0.1,
"Germany", 0.9,
"Ghana", 0.1,
"Gibraltar", 1.0,
"Greece", 0.5,
"Greenland", 0.9,
"Grenada", 0.2,
"Guadeloupe", 0.5,
"Guam", 0.6,
"Guatemala", 0.1,
"Guinea", 0.1,
"Guinea-Bissau", 0.1,
"Guyana", 0.2,
"Haiti", 0.1,
"Honduras", 0.1,
"Hungary", 0.4,
"Iceland", 1.0,
"India", 0.1,
"Indonesia", 0.1,
"Iran", 0.0,
"Iraq", 0.1,
"Ireland", 1.0,
"Isle of Man", 1.0,
"Israel", 0.7,
"Italy", 0.7,
"Ivory Coast", 0.1,
"Jamaica", 0.1,
"Japan", 0.9,
"Jersey", 1.0,
"Jordan", 0.1,
"Kazakhstan", 0.3,
"Kenya", 0.1,
"Kosovo", 0.1,
"Kuwait", 0.6,
"Kyrgyzstan", 0.1,
"Laos", 0.1,
"Latvia", 0.3,
"Lebanon", 0.1,
"Lesotho", 0.1,
"Liberia", 0.1,
"Libya", 0.2,
"Liechtenstein", 1.0,
"Lithuania", 0.4,
"Luxembourg", 1.0,
"Madagascar", 0.1,
"Malawi", 0.1,
"Malaysia", 0.3,
"Maldives", 0.2,
"Mali", 0.1,
"Malta", 0.6,
"Martinique", 0.5,
"Mauritania", 0.1,
"Mauritius", 0.2,
"Mexico", 0.2,
"Micronesia", 0.1,
"Moldova", 0.1,
"Monaco", 1.0,
"Mongolia", 0.1,
"Montenegro", 0.2,
"Montserrat", 0.2,
"Morocco", 0.1,
"Mozambique", 0.1,
"Myanmar", 0.1,
"Namibia", 0.1,
"Nepal", 0.1,
"Netherlands", 1.0,
"New Caledonia", 0.3,
"New Zealand", 0.7,
"Nicaragua", 0.1,
"Niger", 0.1,
"Nigeria", 0.1,
"Niue", 0.3,
"North Macedonia", 0.1,
"Northern Mariana Islands", 0.4,
"Norway", 1.0,
"Oman", 0.3,
"Pakistan", 0.1,
"Palau", 0.3,
"Palestinian Territory", 0.1,
"Panama", 0.3,
"Papua New Guinea", 0.1,
"Paraguay", 0.1,
"Peru", 0.2,
"Philippines", 0.1,
"Poland", 0.4,
"Portugal", 0.5,
"Puerto Rico", 0.5,
"Qatar", 1.0,
"Republic of the Congo", 0.1,
"Reunion", 0.1,
"Romania", 0.3,
"Russia", 0.3,
"Rwanda", 0.1,
"Saint Kitts and Nevis", 0.4,
"Saint Lucia", 0.2,
"Saint Vincent and the Grenadines", 0.2,
"Samoa", 0.1,
"San Marino", 0.9,
"Sao Tome and Principe", 0.1,
"Saudi Arabia", 0.4,
"Senegal", 0.1,
"Serbia", 0.2,
"Seychelles", 0.3,
"Sierra Leone", 0.1,
"Singapore", 1.0,
"Sint Maarten", 0.5,
"Slovakia", 0.4,
"Slovenia", 0.5,
"Solomon Islands", 0.1,
"Somalia", 0.1,
"South Africa", 0.2,
"South Korea", 0.6,
"South Sudan", 0.1,
"Spain", 0.6,
"Sri Lanka", 0.1,
"Sudan", 0.1,
"Suriname", 0.2,
"Svalbard and Jan Mayen", 1.0,
"Sweden", 1.0,
"Switzerland", 1.0,
"Taiwan", 0.4,
"Tajikistan", 0.1,
"Tanzania", 0.1,
"Thailand", 0.2,
"Timor Leste", 0.1,
"Togo", 0.1,
"Tonga", 0.1,
"Trinidad and Tobago", 0.3,
"Tunisia", 0.1,
"Turkey", 0.3,
"Turkmenistan", 0.2,
"Turks and Caicos Islands", 0.5,
"Tuvalu", 0.1,
"U.S. Virgin Islands", 0.6,
"Uganda", 0.1,
"Ukraine", 0.1,
"United Arab Emirates", 0.8,
"United Kingdom", 0.8,
"United States", 1.0,
"Uruguay", 0.3,
"Uzbekistan", 0.1,
"Vatican", 0.4,
"Venezuela", 0.1,
"Vietnam", 0.1,
"Western Sahara", 0.1,
"Yemen", 0.1,
"Zambia", 0.1,
"Zimbabwe", 0.1
];
var select0 = document.querySelector(".js-Selector0"); //.innerHTML = "";
for(var i = 0; i < countries.length/2; i++) {
var opt = document.createElement('option');
opt.value = countries[2*i+1];
opt.text = countries[2*i];
select0.add(opt);
}
var select1 = document.querySelector(".js-Selector1"); //.innerHTML = "";
var opt = document.createElement('option');
opt.value = 0.0;
opt.text = 'Academia';
select1.add(opt);
var opt = document.createElement('option');
opt.value = 1.0;
opt.text = 'Industry';
select1.add(opt);
var opt = document.createElement('option');
opt.value = 0.0;
opt.text = 'Other/self-employed';
select1.add(opt);
var select2 = document.querySelector(".js-Selector2"); //.innerHTML = "";
var opt = document.createElement('option');
opt.value = 1.0;
opt.text = 'Yes';
select2.add(opt);
var opt = document.createElement('option');
opt.value = 0.0;
opt.text = 'No';
select2.add(opt);
var select3 = document.querySelector(".js-Selector3"); //.innerHTML = "";
var opt = document.createElement('option');
opt.value = 995;
opt.text = 'Deep Learning';
select3.add(opt);
var opt = document.createElement('option');
opt.value = 995;
opt.text = 'Computational Neuroscience';
select3.add(opt);
var opt = document.createElement('option');
opt.value = 695;
opt.text = 'Computational Tools for Climate Science';
select3.add(opt);
var opt = document.createElement('option');
opt.value = 695;
opt.text = 'NeuroAI';
select3.add(opt);
//document.querySelector(".js-Selector").value = "Europe/Brussels";
function onChange() {
var country = document.getElementById('country').value
var job = document.getElementById('job').value
var fund = document.getElementById('fund').value
var course = document.getElementById('course').value
baseCost = Math.floor(country * course * (0.5 + 0.5*fund) + country * course * 0.574 / 0.426 * job * fund)
processingCost = Math.floor(country * 50)
totalCost = Math.floor(baseCost + processingCost)
document.getElementById('costs').innerHTML = '$' + baseCost + ' USD';
document.getElementById('processing-costs').innerHTML = '$' + processingCost + ' USD';
document.getElementById('total-costs').innerHTML = '$' + totalCost + ' USD';
}
onChange();
</script>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</div>
</div>
</div>
</body></html>