-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
448 lines (382 loc) · 24.8 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
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
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>NLA Kalkulačka</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.form/4.2.2/jquery.form.min.js" integrity="sha256-2Pjr1OlpZMY6qesJM68t2v39t+lMLvxwpa8QlRjJroA=" crossorigin="anonymous"></script>
<script>
var DISPO_TIME = 48;
var WEEKS_PER_MONTH = 4;
var BASIC_EXPENSES = 250;
var BULGARIAN_CONSTANT = 0.25;
var BASIC_TUITION_FEE = 89;
var MIN_TUITION = 79;
var tuition_fee_offer;
function get_school_time(school_status) {
if (school_status === "secondary_school") { return 40;}
else if (school_status === "bachelor") { return 28;}
else if (school_status === "masters") { return 28;}
else if (school_status === "phd") { return 40;}
else if (school_status === "distant") { return 8;}
else if (school_status === "alumni") { return 0;}
}
function get_pay_rate(school_status) {
if (school_status === "secondary_school") { return 2.25;}
else if (school_status === "bachelor") { return 3;}
else if (school_status === "masters") { return 3.8;}
else if (school_status === "phd") { return 5;}
else if (school_status === "distant") { return 5;}
else if (school_status === "alumni") { return 5;}
}
function get_work_time(work_status) {
if (work_status === "none") { return 0;}
else if (work_status === "quarter") { return 12;}
else if (work_status === "half") { return 24;}
else if (work_status === "full") { return 48;}
}
function calculate_tuition_fee() {
var form = document.getElementById("form2");
var spent_time = Number(form['volunteering_hours'].value) + Number(get_school_time(form['school_status'].value))
+ Number(get_work_time(form['work_status'].value));
spent_time = Math.min(DISPO_TIME, spent_time);
spent_time = Math.max(0, spent_time);
console.log("Spent Time: ", spent_time);
var potential_income = (DISPO_TIME - spent_time) * WEEKS_PER_MONTH * get_pay_rate( form['school_status'].value );
console.log("Potential income: ", potential_income);
var income = Number( form['monthly_income'].value ) + Number( form['monthly_pocket_money'].value )
if (form['mama_hotel'].value === "yes") {
income = income + 150;
}
console.log("Actual income: ", income);
var tuition_fee = (income - BASIC_EXPENSES + potential_income) * BULGARIAN_CONSTANT;
var scholarship = BASIC_TUITION_FEE - tuition_fee;
console.log("Scholarship: ", scholarship);
console.log("NLA price: ", tuition_fee);
tuition_fee = Math.min(BASIC_TUITION_FEE, tuition_fee);
tuition_fee = Math.max(MIN_TUITION, tuition_fee);
console.log("NLA price after min/max: ", tuition_fee);
tuition_fee_offer = tuition_fee;
return Math.floor(tuition_fee);
}
function set_google_forms_part() {
document.getElementById("google_name_surname").value = document.getElementById("student_name").value;
document.getElementById("google_mail").value = document.getElementById("student_mail").value;
document.getElementById("google_level").value = document.getElementById("student_level").value;
document.getElementById("google_scholarship_request").value = "no";
document.getElementById("google_income").value = "x";
document.getElementById("google_pocket_money").value = "x";
document.getElementById("google_mama_hotel").value = "x";
document.getElementById("google_school").value = "x";
document.getElementById("google_work").value = "x";
document.getElementById("google_volunteering").value = "x";
document.getElementById("google_tuition_offer").value = "x";
document.getElementById("google_student_offer").value = "x";
document.getElementById("google_feedback").value = "x";
}
function set_google_forms() {
document.getElementById("google_name_surname").value = document.getElementById("student_name").value;
document.getElementById("google_mail").value = document.getElementById("student_mail").value;
document.getElementById("google_level").value = document.getElementById("student_level").value;
document.getElementById("google_scholarship_request").value = "yes";
document.getElementById("google_income").value = document.getElementById("monthly_income").value;
document.getElementById("google_pocket_money").value = document.getElementById("monthly_pocket_money").value;
document.getElementById("google_mama_hotel").value = document.getElementById("form2")["mama_hotel"].value;
document.getElementById("google_school").value = document.getElementById("school_status").value;
document.getElementById("google_work").value = document.getElementById("work_status").value;
document.getElementById("google_volunteering").value = document.getElementById("volunteering_hours").value;
document.getElementById("google_tuition_offer").value = tuition_fee_offer;
document.getElementById("google_student_offer").value = document.getElementById("suggested_price").value;
document.getElementById("google_feedback").value = document.getElementById("feedback").value;
}
// Example starter JavaScript for disabling form submissions if there are invalid fields
(function() {
'use strict';
window.addEventListener('load', function() {
// Fetch all the forms we want to apply custom Bootstrap validation styles to
var forms = document.getElementsByClassName('needs-validation');
// Loop over them and prevent submission
var validation = Array.prototype.filter.call(forms, function(form) {
form.addEventListener('submit', function(event) {
if (form.checkValidity() === false) {
event.preventDefault();
event.stopPropagation();
} else {
if (form.name === "form1") {
if (form["scholarship_request"].value === "yes") {
event.preventDefault();
event.stopPropagation();
document.getElementById ( "form1_fieldset" ).setAttribute('disabled', 'disabled');
document.getElementById ( "form2_fieldset" ).removeAttribute('disabled');
document.getElementById ( "form2_div" ).removeAttribute('hidden');
document.getElementById ( "form1_div" ).setAttribute('hidden', 'hidden');
} else {
event.preventDefault();
event.stopPropagation();
// send to db
document.getElementById ( "form3_fieldset" ).removeAttribute('disabled');
set_google_forms_part();
document.form3.submit();
}
} else if (form.name === "form2") {
event.preventDefault();
event.stopPropagation();
document.getElementById ( "form2_fieldset" ).setAttribute('disabled', 'disabled');
document.getElementById ( "form3_fieldset" ).removeAttribute('disabled');
document.getElementById ( "form3_div" ).removeAttribute('hidden');
document.getElementById ( "form2_div" ).setAttribute('hidden', 'hidden');
var tuition_fee = calculate_tuition_fee();
if (BASIC_TUITION_FEE-tuition_fee === 0)
{
document.getElementById("result_info_text").innerHTML = `
Na základe zadaných údajov nám vyšlo, že popri štipendiu vo výške 2800€, ktorým podporujeme každého študenta, Ti nevieme poskytnúť ďalšie štipendium. Zároveň budeme radi, ak môžeš svojim vyšším mesačným členským podporiť študentov, ktorí sú v náročnejšej životnej či finančnej situácii. Ďakujeme.
`;
} else {
document.getElementById("result_info_text").innerHTML = `
Na základe zadaných údajov nám vyšlo, že popri štipendiu vo výške 2800€, ktorým podporujeme každého študenta, Ti vieme poskytnúť aj štipendium vo výške <b id='final_price_stipendium'>-</b><b>€</b>/mesačne. Na semester Tvoje členské vychádza na <b id='final_price_semester'>-</b><b>€</b> a na školský rok <b id='final_price_year'>-</b><b>€</b>.
To by znamenalo, že Tvoje členské by bolo vo výške <b id='final_price'>-</b><b>€</b>/mesačne. Môžeš ho zaplatiť aj na semester vopred. Ak sa Ti výška členského zdá privysoká, pokračuj ďalej.
`;
document.getElementById("suggested_price").value = tuition_fee;
document.getElementById("final_price").innerHTML = tuition_fee;
document.getElementById("final_price_semester").innerHTML = tuition_fee*5;
document.getElementById("final_price_year").innerHTML = tuition_fee*10;
document.getElementById("final_price_stipendium").innerHTML = BASIC_TUITION_FEE-tuition_fee;
}
document.getElementById("final_price_semester_2").innerHTML = tuition_fee*5;
document.getElementById("final_price_2").innerHTML = tuition_fee;
} else if (form.name === "form3") {
//send to db
set_google_forms()
}
}
form.classList.add('was-validated');
}, false);
});
}, false);
})();
</script>
<script>
$('#form3').submit(function (event) {
event.preventDefault()
var extraData = {}
$('#form3').ajaxSubmit({
data: extraData,
dataType: 'jsonp', // This won't really work. It's just to use a GET instead of a POST to allow cookies from different domain.
error: function () {
// Submit of form should be successful but JSONP callback will fail because Google Forms
// does not support it, so this is handled as a failure.
alert('Form Submitted. Thanks.')
// You can also redirect the user to a custom thank-you page:
// window.location = 'http://www.mydomain.com/thankyoupage.html'
}
})
})
</script>
</head>
<body>
<div class="container">
<h3 style="margin-top:40px">Ahoj</h3>
<p>
Na tejto stránke si preto, že popri štipendiu 2800€/rok, ktoré získava každý študent NLA, si v životnej situácii, kedy potrebuješ finančne podporiť ešte o niečo viac, nech sa môžeš naplno venovať štúdiu v NLA.
</p>
<p>
Nasledujúce otázky nám pomôžu navrhnúť Ti štipendium, ktoré môžeš v NLA poberať, ak si nemôžeš dovoliť platiť plnú mesačnú sumu 89 eur. Jednotlivé hodnoty, ktoré zadáš, sú vstupom pre automatický výpočet. Výpočet pracuje s Tvojim príjmom a Tvojim časom.
</p>
<p>
Otázky sú pre všetkých rovnaké, avšak životné situácie a podmienky rôzne. Prosím, vyplň tento dotazník pravdivo a čo najpresnejšie, aby výsledok nebol skreslený. Podklady k číslam (výplatné pásky, ...) nebudeme od Teba potrebovať, dôverujeme Ti.
</p>
<p>
Údaje, ktoré vypĺňaš, považujeme za dôverné. Budú uložené na serveri Nexterie po dobu trvania Tvojho štipendia. Po ukončení poberania štipendia ich zmažeme.
</p>
<p>
Väčšinu otázok vieš vyplniť hneď, pri niektorých sa možno potrebuješ zamyslieť viac a prečítať si aj vysvetlenie. Ak ti niečo nie je jasné, skús nájsť odpoveď vo vysvetlivkách pri jednotlivých otázkach. Ak stále tápaš, ozvi sa nám.
</p>
</div>
<br>
<div class="container" id="form1_div">
<div class="card card-body">
<h2 class="card-title">Základné údaje</h2>
<form class="needs-validation" novalidate name="form1">
<fieldset id="form1_fieldset">
<div class="form-group">
<label for="student_name">Meno a priezvisko</label>
<input type="text" class="form-control" id="student_name" placeholder="Meno a priezvisko" required>
<div class="invalid-feedback">Prosím vyplň si meno</div>
</div>
<div class="form-group">
<label for="student_mail">Mailová adresa </label>
<input type="email" class="form-control" id="student_mail" placeholder="Mailová adresa" autocomplete="email" required>
<div class="invalid-feedback">Prosím vyplň si mailovú adresu</div>
</div>
<div class="form-group">
<label for="student_level">Level</label>
<select class="form-control" id="student_level" required>
<option value="">Vyber správnu odpoveď</option>
<option value="level_1">Level 1</option>
<option value="level_2">Level 2</option>
<option value="level_3">Level 3</option>
</select>
<div class="invalid-feedback">Prosím vyber správnu odpoveď</div>
</div>
<fieldset class="form-group">
<legend class="col-form-label pt-0">Žiadam o štipendium</legend>
<div class="form-check">
<input class="form-check-input" type="radio" name="scholarship_request" id="scholarship_request_yes" value="yes" required>
<label class="form-check-label" for="scholarship_request_yes">
Áno, žiadam o štipendium
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="scholarship_request" id="scholarship_request_no" value="no" required>
<label class="form-check-label" for="scholarship_request_no">
Nie, nežiadam o štipendium
</label>
</div>
<div class="invalid-feedback">Prosím vyber správnu možnosť</div>
<small class="form-text text-muted">Vyber správnu možnosť</small>
</fieldset>
<button type="submit" class="btn btn-primary">Pokračovať</button>
</fieldset>
</form>
</div>
</div>
<br>
<div class="container" id="form2_div" hidden>
<div class="card card-body">
<h2 class="card-title">Podrobnosti o príjme</h2>
<form class="needs-validation" novalidate name="form2" id="form2">
<fieldset id="form2_fieldset" disabled>
<div class="form-group">
<label for="monthly_income">Výška Tvojho mesačného príjmu (v eur)</label>
<input type="number" class="form-control" id="monthly_income" placeholder="Zadaj celé číslo v eur" required>
<small class="form-text text-muted">Rozumej tvoj priemerný mesačný čistý príjem (práca, brigáda). Ak máš príjem z letných brigád, rozdeľ ho rovnomerne na 12 mesiacov a prirátaj k mesačnému príjmu.</small>
<div class="invalid-feedback">Prosím zadaj celé číslo v eur</div>
</div>
<div class="form-group">
<label for="monthly_pocket_money">Výška podpory od Tvojich rodičov (v eur)</label>
<input type="number" class="form-control" id="monthly_pocket_money" placeholder="Zadaj celé číslo v eur" required>
<small class="form-text text-muted">Rozumej sumu, ktorou ťa mesačne podporujú rodičia (napr. vo forme vreckového, príp. ak ti platia internát, električenku, cestovné, paušál,...), resp. ak poberáš sociálne štipendium zo školy.</small>
<div class="invalid-feedback">Prosím zadaj celé číslo v eur</div>
</div>
<fieldset class="form-group">
<legend class="col-form-label pt-0">Bývam/nebývam u rodičov</legend>
<div class="form-check">
<input class="form-check-input" type="radio" name="mama_hotel" id="mama_hotel_yes" value="yes" required>
<label class="form-check-label" for="mama_hotel_yes">
Bývam u rodičov
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="mama_hotel" id="mama_hotel_no" value="no" required>
<label class="form-check-label" for="mama_hotel_no">
Nebývam u rodičov
</label>
</div>
<div class="invalid-feedback">Prosím vyber správnu možnosť</div>
<small class="form-text text-muted">Vyber správnu možnosť</small>
</fieldset>
<div class="form-group">
<label for="school_status">Si študent alebo pracujúci</label>
<select class="form-control" id="school_status" required>
<option value="">Vyber správnu odpoveď</option>
<option value="secondary_school">Študent SŠ</option>
<option value="bachelor">Študent VŠ - Bc. štúdium (denne)</option>
<option value="masters">Študent VŠ - Mgr./Ing. štúdium (denne)</option>
<option value="phd">Študent VŠ - doktorandské štúdium (denne)</option>
<option value="distant">Študent VŠ - externé štúdium</option>
<option value="alumni">Absolvent</option>
</select>
<div class="invalid-feedback">Prosím vyber správnu odpoveď</div>
</div>
<div class="form-group">
<label for="work_status">Aký typ úväzku máš?</label>
<select class="form-control" id="work_status" required>
<option value="">Vyber správnu odpoveď</option>
<option value="none">Nepracujem</option>
<option value="quarter">Štvrtinový úväzok</option>
<option value="half">Polovičný úväzok</option>
<option value="full">Full-time</option>
</select>
<div class="invalid-feedback">Prosím vyber správnu odpoveď</div>
</div>
<div class="form-group">
<label for="volunteering_hours">Koľko času do mesiaca venuješ práci pre iných bez nároku na finančnú odmenu alebo rozbehu vlastného projektu / biznis plánu?</label>
<input type="number" class="form-control" id="volunteering_hours" placeholder="Zadaj celé číslo (počet hodín)" required>
<div class="invalid-feedback">Prosím zadaj celé číslo (počet hodín)</div>
<small class="form-text text-muted">
Rozumej priemerný počet hodín za mesiac, ktoré venuješ dobrovoľníctvu, pro bono práci pre neziskovku či inú organizáciu. Ak je to nárazové (napr. v lete, tak to rozdeľ rovnomerne na 12 mesiacov).
<br>
Tiež sem započítaj čas, ktorý venuješ starostlivosti o rodinu (nie, nemyslíme to, keď vynesieš 3 razy do týždňa smeti, ale keď pomáhaš vychovávať súrodencov či pomáhaš rodičovi s chodom domácnosti). Na túto informáciu sa pýtame preto, že je to čas, ktorý nevenuješ získavaniu príjmu niekde inde a zároveň robíš perfektnú vec, ktorú radi podporíme. :)
</small>
</div>
<button type="submit" class="btn btn-primary">Pokračovať</button>
</fieldset>
</form>
</div>
</div>
<br>
<div class="container" id="form3_div" hidden>
<div class="card card-body">
<h2 class="card-title">Výsledná suma</h2>
<form class="needs-validation" novalidate id="form3_id" name="form3" method="POST" target="_self"
action="https://docs.google.com/forms/d/e/1FAIpQLSfOrc5ullu_TkmDn6PKPMPZLMJ166deLQRsiPN2GZTsDCIORQ/formResponse">
<fieldset id="form3_fieldset" disabled>
<fieldset class="form-group">
<legend class="col-form-label pt-0" id="result_info_text">
</legend>
<div class="form-check">
<input class="form-check-input" type="radio" name="cholarship_result" id="cholarship_result_agree" value="yes" required onclick="document.getElementById('scholarship_ok_disclaimer').setAttribute('hidden', 'hidden');">
<label class="form-check-label" for="cholarship_result_agree" id="result_agree">
Moje členské je na semester <b id="final_price_semester_2">-</b><b>€</b> a môžem ho platiť v mesačných platbách vo výške <b id="final_price_2">-</b><b>€</b>
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="cholarship_result" id="cholarship_result_disagree" value="no" required onclick="document.getElementById('scholarship_ok_disclaimer').removeAttribute('hidden')">
<label class="form-check-label" for="cholarship_result_disagree">
<div class="form-group" id="result_disagree">
Ďakujem za ponuku, no <strong>navrhované členské je pre moju životnú situáciu stále vysoké.</strong> Maximálnu sumu, ktorú viem platiť mesačne je
<input type="number" class="form-contro" id="suggested_price" placeholder="napíš sumu">
<div class="invalid-feedback">Prosím vyber správnu možnosť</div>
eur.
</div>
</label>
</div>
</fieldset>
<div id="scholarship_ok_disclaimer" hidden>
<p>
Každý sme v inej životnej situácii. Ak Ti navrhované štipendium neumožňuje byť aktívnym študentom NLA a vyššie je už zaznačená maximálna suma, ktorú vieš platiť, prosím, napíš nám v stručnosti dôvod, pre ktorý by Ti vyššie štipendium pomohlo. Nech si vieme urobiť lepší prehľad o Tvojej situácii. Následne sa s Tebou stretneme a vo vzájomnom rozhovore výšku štipendia uzavrieme.
</p>
<div class="form-group">
<label for="feedback">Dôvod, pre ktorý žiadam vyššie štipendium:</label>
<input type="text" class="form-control" id="feedback">
</div>
</div>
<input id="google_name_surname" type="hidden" name="entry.40465471" class="form-control" >
<input id="google_mail" type="hidden" name="entry.38124386" class="form-control" >
<input id="google_level" type="hidden" name="entry.56249229" class="form-control" >
<input id="google_scholarship_request" type="hidden" name="entry.1940130896" class="form-control" >
<input id="google_income" type="hidden" name="entry.671269859" class="form-control" >
<input id="google_pocket_money" type="hidden" name="entry.1417534105" class="form-control" >
<input id="google_mama_hotel" type="hidden" name="entry.1789015317" class="form-control" >
<input id="google_school" type="hidden" name="entry.1078695368" class="form-control" >
<input id="google_work" type="hidden" name="entry.2018257041" class="form-control" >
<input id="google_volunteering" type="hidden" name="entry.92554911" class="form-control" >
<input id="google_tuition_offer" type="hidden" name="entry.104636010" class="form-control" >
<input id="google_student_offer" type="hidden" name="entry.788011291" class="form-control" >
<input id="google_feedback" type="hidden" name="entry.1185099708" class="form-control" >
<input type="hidden" name="fvv" value="1">
<input type="hidden" name="fbzx" value="-5099501196004458638">
<input type="hidden" name="pageHistory" value="0">
<button type="submit" class="btn btn-primary">Odoslať</button>
</fieldset>
</form>
</div>
</div>
<br><br><br>
</body>
</html>