-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
484 lines (458 loc) · 13 KB
/
index.php
File metadata and controls
484 lines (458 loc) · 13 KB
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
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
<?php
// Settings
// These are the settings you need to adjust
$schoolname = "Kāpiti College"; // This is your school name
$host = '172.30.0.91'; // This is your SMTP host
$port = '25'; // This is the port for your SMTP host
$from = 'bullying@kc.school.nz'; // This is the email the notifications will come from
$to = 'jake.wills@kc.school.nz'; // This is the email the notifications will go to
// reCAPTCHA Details
// You can register for reCAPTCHA here: https://g.co/recaptcha/v3 ... it's free
$sitekey = "YOUR-SITE-KEY";
$secretkey = "YOUR-SECRET-KEY";
// You shouldn't need to change anything after this point.
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;
?>
<html>
<head>
<title>Make A Notification</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0,user-scalable=0">
<script src="https://www.google.com/recaptcha/api.js?render=<?php echo $sitekey; ?>"></script>
<script>
grecaptcha.ready(function () {
grecaptcha.execute('<?php echo $sitekey; ?>', { action: 'contact' }).then(function (token) {
var recaptchaResponse = document.getElementById('recaptchaResponse');
recaptchaResponse.value = token;
});
});
</script>
<style>
body, input, select,textarea{
font-family: 'Open Sans', sans-serif;
}
input, select, textarea{
width:100%;
font-size:16px;
border-radius:3px;
border:1px solid #ccc;
}
body {
background-color:#fff8f9;
}
#content {
max-width:600px;
margin: 0 auto;
background-color:#fff;
padding:20px;
box-shadow:0px 0px 5px rgba(0,0,0,0.3);
border-radius:3px;
}
h1{
margin:0px;
}
</style>
</head>
<body>
<div id=content>
<?php
if(isset($_POST['name']) && isset($_POST['recaptcha_response'])){
// reCAPTCHA authentication
// Build POST request:
$recaptcha_url = 'https://www.google.com/recaptcha/api/siteverify';
$recaptcha_secret = $secretkey;
$recaptcha_response = $_POST['recaptcha_response'];
// Make and decode POST request:
$recaptcha = file_get_contents($recaptcha_url . '?secret=' . $recaptcha_secret . '&response=' . $recaptcha_response);
$recaptcha = json_decode($recaptcha);
// Take action based on the score returned:
if ($recaptcha->score >= 0.5) {
// Verified - send email
$link = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ?
"https" : "http") . "://" . $_SERVER['HTTP_HOST'] .
$_SERVER['REQUEST_URI'];
$email = "
<img src='$link/Logo.png' style='width:100px;'>
<br>
A form has been submitted on ".$link."<br>
<br>
<div style='border:1px solid #ccc;padding:10px;max-width:600px;'>
<b>Name of the person being bullied or harmed *</b>
<br>
".$_POST['name']."
<br>
<br>
<b>Do they go to $schoolname *</b>
<br>
".$_POST['goestoschool']."
<br>
<br>
<b>If not, which school do they go to?</b>
<br>
".$_POST['school']."
<br>
<br>
<b>What year level are they?</b>
<br>
".$_POST['yearlevel']."
<br>
<br>
<b>What happened? </b>
<br>
".nl2br($_POST['happened'])."
<br>
<br>
<b>Where did this happen?</b>
<br>
".$_POST['where']."
<br>
<br>
<b>How many others were involved? </b>
<br>
".$_POST['others']."
<br>
<br>
<b>How often does this happen?</b>
<br>
".$_POST['often']."
<br>
</div>
";
require './vendor/autoload.php';
$mail = new PHPMailer;
$mail->isSMTP(); // Set mailer to use SMTP
$mail->Host = $host; // Specify main and backup SMTP servers
$mail->Port = $port; // TCP port to connect to
$mail->setFrom($from, 'Bullying Notification');
$mail->addAddress($to); // Add a recipient
$mail->isHTML(true); // Set email format to HTML
$mail->Subject = 'Bullying Notification - '.stripslashes(strip_tags($_POST['name']));
$mail->Body = $email;
$mail->AltBody = 'Oh dear... you cant read this email!';
if(!$mail->send()) {
echo '<center><img src="Logo.png" style="width:100px;"><h1>Error</h1></center><br>Message could not be sent.';
echo 'Mailer Error: ' . $mail->ErrorInfo;
} else {
?>
<center><img src='Logo.png' style='width:100px;'><h1>Thanks</h1></center>
<br>
Thanks for submitting your notification. This helps keep <?php echo $schoolname; ?> a great place for all students.<br>
<br>
If you need to you can <a href="./">submit another notification</a>.
<?php
}
} else {
?>
<center><img src='Logo.png' style='width:100px;'><h1>Oh dear</h1></center>
<br>
Seems like you might be a bot... not ideal.. if you're not a bot you can <a href="./">try again</a>.
<?php
}
} else {
?>
<center><img src='Logo.png' style='width:100px;'><h1>Make A Notification</h1></center>
<br>
The information you are entering is about someone you believe is being bullied or harmed. You are making an anonymous notification however; you must be truthful and responsible.<br>
<br>
<form method=post onsubmit="document.getElementById('button').value='Sending...';document.getElementById('button').disabled = true;">
Name of the person being bullied or harmed *
<br>
<input type="text" name="name" required>
<br>
<br>
Do they go to <?php echo $schoolname; ?> *
<br>
<select name="goestoschool" required>
<option></option>
<option>Yes</option>
<option>No</option>
</select>
<br>
<br>
If not, which school do they go to?
<br>
<input type="text" name="school">
<br>
<br>
What year level are they?
<br>
<input type="text" name="yearlevel">
<br>
<br>
What happened?
<br>
<textarea name="happened"></textarea>
<br>
<br>
Where did this happen?
<br>
<select name="where">
<option></option>
<option>In class</option>
<option>On school grounds</option>
<option>At home</option>
<option>Outside school</option>
<option>Instagram</option>
<option>Facebook</option>
<option>Snapchat</option>
<option>Text messages</option>
<option>Email</option>
<option>On the bus / train</option>
<option>At a party</option>
<option>Other</option>
</select>
<br>
<br>
How many others were involved?
<br>
<input type=number name="others">
<br>
<br>
How often does this happen?
<br>
<select name="often">
<option></option>
<option>Every hour</option>
<option>Every day</option>
<option>Every other day</option>
<option>Once per week</option>
<option>Once per month</option>
<option>I don't know</option>
</select>
<br>
<br>
<input type=checkbox name=checked required style='width:auto;'> I understand that this notification may not be read immediately. If it is an urgent you should contact someone directly. You must check this box before sending a notification.
<br>
<br>
<input type="hidden" name="recaptcha_response" id="recaptchaResponse">
<input id=button type=submit value='Send Notification' style='background-color:#000;color:#fff;border:none;border-radius:20px;padding:10px;font-weight:bold;' >
</form>
<?php
}
?>
</div>
</body>
</html>
// You shouldn't need to change anything after this point.
?>
<html>
<head>
<title>Make A Notification</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0,user-scalable=0">
<script src="https://www.google.com/recaptcha/api.js?render=<?php echo $sitekey; ?>"></script>
<script>
grecaptcha.ready(function () {
grecaptcha.execute('<?php echo $sitekey; ?>', { action: 'contact' }).then(function (token) {
var recaptchaResponse = document.getElementById('recaptchaResponse');
recaptchaResponse.value = token;
});
});
</script>
<style>
body, input, select,textarea{
font-family: 'Open Sans', sans-serif;
}
input, select, textarea{
width:100%;
font-size:16px;
border-radius:3px;
border:1px solid #ccc;
}
body {
background-color:#fff8f9;
}
#content {
max-width:600px;
margin: 0 auto;
background-color:#fff;
padding:20px;
box-shadow:0px 0px 5px rgba(0,0,0,0.3);
border-radius:3px;
}
h1{
margin:0px;
}
</style>
</head>
<body>
<div id=content>
<?php
if(isset($_POST['name']) && isset($_POST['recaptcha_response'])){
// reCAPTCHA authentication
// Build POST request:
$recaptcha_url = 'https://www.google.com/recaptcha/api/siteverify';
$recaptcha_secret = $secretkey;
$recaptcha_response = $_POST['recaptcha_response'];
// Make and decode POST request:
$recaptcha = file_get_contents($recaptcha_url . '?secret=' . $recaptcha_secret . '&response=' . $recaptcha_response);
$recaptcha = json_decode($recaptcha);
// Take action based on the score returned:
if ($recaptcha->score >= 0.5) {
// Verified - send email
$link = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ?
"https" : "http") . "://" . $_SERVER['HTTP_HOST'] .
$_SERVER['REQUEST_URI'];
$email = "
<img src='$link/Logo.png' style='width:100px;'>
<br>
A form has been submitted on ".$link."<br>
<br>
<div style='border:1px solid #ccc;padding:10px;max-width:600px;'>
<b>Name of the person being bullied or harmed *</b>
<br>
".$_POST['name']."
<br>
<br>
<b>Do they go to $schoolname *</b>
<br>
".$_POST['goestoschool']."
<br>
<br>
<b>If not, which school do they go to?</b>
<br>
".$_POST['school']."
<br>
<br>
<b>What year level are they?</b>
<br>
".$_POST['yearlevel']."
<br>
<br>
<b>What happened? </b>
<br>
".nl2br($_POST['happened'])."
<br>
<br>
<b>Where did this happen?</b>
<br>
".$_POST['where']."
<br>
<br>
<b>How many others were involved? </b>
<br>
".$_POST['others']."
<br>
<br>
<b>How often does this happen?</b>
<br>
".$_POST['often']."
<br>
</div>
";
require './vendor/autoload.php';
$mail = new PHPMailer;
$mail->isSMTP(); // Set mailer to use SMTP
$mail->Host = $host; // Specify main and backup SMTP servers
$mail->Port = $port; // TCP port to connect to
$mail->setFrom($from, 'Bullying Notification');
$mail->addAddress($to); // Add a recipient
$mail->isHTML(true); // Set email format to HTML
$mail->Subject = 'Bullying Notification - '.stripslashes(strip_tags($_POST['name']));
$mail->Body = $email;
$mail->AltBody = 'Oh dear... you cant read this email!';
if(!$mail->send()) {
echo '<center><img src="Logo.png" style="width:100px;"><h1>Error</h1></center><br>Message could not be sent.';
echo 'Mailer Error: ' . $mail->ErrorInfo;
} else {
?>
<center><img src='Logo.png' style='width:100px;'><h1>Thanks</h1></center>
<br>
Thanks for submitting your notification. This helps keep <?php echo $schoolname; ?> a great place for all students.<br>
<br>
If you need to you can <a href="./">submit another notification</a>.
<?php
}
} else {
?>
<center><img src='Logo.png' style='width:100px;'><h1>Oh dear</h1></center>
<br>
Seems like you might be a bot... not ideal.. if you're not a bot you can <a href="./">try again</a>.
<?php
}
} else {
?>
<center><img src='Logo.png' style='width:100px;'><h1>Make A Notification</h1></center>
<br>
The information you are entering is about someone you believe is being bullied or harmed. You are making an anonymous notification however; you must be truthful and responsible.<br>
<br>
<form method=post onsubmit="document.getElementById('button').value='Sending...';document.getElementById('button').disabled = true;">
Name of the person being bullied or harmed *
<br>
<input type="text" name="name" required>
<br>
<br>
Do they go to <?php echo $schoolname; ?> *
<br>
<select name="goestoschool" required>
<option></option>
<option>Yes</option>
<option>No</option>
</select>
<br>
<br>
If not, which school do they go to?
<br>
<input type="text" name="school">
<br>
<br>
What year level are they?
<br>
<input type="text" name="yearlevel">
<br>
<br>
What happened?
<br>
<textarea name="happened"></textarea>
<br>
<br>
Where did this happen?
<br>
<select name="where">
<option></option>
<option>In class</option>
<option>On school grounds</option>
<option>At home</option>
<option>Outside school</option>
<option>Instagram</option>
<option>Facebook</option>
<option>Snapchat</option>
<option>Text messages</option>
<option>Email</option>
<option>On the bus / train</option>
<option>At a party</option>
<option>Other</option>
</select>
<br>
<br>
How many others were involved?
<br>
<input type=number name="others">
<br>
<br>
How often does this happen?
<br>
<select name="often">
<option></option>
<option>Every hour</option>
<option>Every day</option>
<option>Every other day</option>
<option>Once per week</option>
<option>Once per month</option>
<option>I don't know</option>
</select>
<br>
<br>
<input type=checkbox name=checked required style='width:auto;'> I understand that this notification may not be read immediately. If it is an urgent you should contact someone directly. You must check this box before sending a notification.
<br>
<br>
<input type="hidden" name="recaptcha_response" id="recaptchaResponse">
<input id=button type=submit value='Send Notification' style='background-color:#000;color:#fff;border:none;border-radius:20px;padding:10px;font-weight:bold;' >
</form>
<?php
}
?>
</div>
</body>
</html>