-
Notifications
You must be signed in to change notification settings - Fork 0
/
account.php
1053 lines (627 loc) · 37.3 KB
/
account.php
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
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
// ___ ___ ___ ___ ___ __ _______ ________
// |" \ /" |" \/" | |" | /""\ | _ "\ /" )
// \ \ // / \ \ / || | / \ (. |_) :(: \___/
// \\ \/. ./ \\ \/ |: | /' /\ \ |: \/ \___ \
// \. // /\. \ \ |___ // __' \ (| _ \\ __/ \\
// \\ / / \ \ ( \_|: \ / / \\ \|: |_) :)/" \ :)
// \__/ |___/\___| \_______(___/ \___(_______/(_______/
//
// Unapproved use and redistribution of this code and respective product is strictly prohibited.
// Copyright© 2017 Keanu Ashwell all rights are reserved to the author, creator, registered
// and licensed owners of this product and it's content
if(session_id() != $_COOKIE['PHPSESSID'] || !$_COOKIE['PHPSESSID']) {
session_start();
}
// Require
require_once('mysql.php');
require_once('steam.php');
// Security checks
// Check if cookie is set
if(isset($_COOKIE['USERNAME'])) {
// Cookie is set
// Query
$QUERY_ALL_USERS = mysqli_query($conn, "
SELECT
vx.accounts.id,
vx.accounts.username,
vx.accounts.ip,
vx.accounts.admin,
vx.accounts.permissionArray
FROM vx.accounts
WHERE vx.accounts.username = '" . $_COOKIE['USERNAME'] . "';
");
// Fetch the results
$RESULT_ALL_USERS = mysqli_fetch_array($QUERY_ALL_USERS);
// If session id different from user id
if($RESULT_ALL_USERS[0] != $_SESSION['USERID']) {
// Redirect to landing page
header('Location: index.php');
}
} else {
// Redirect
header('Location: index.php');
}
?>
<html>
<head>
<link rel="stylesheet" href="css/globals.css">
<link rel="stylesheet" href="css/account.css">
<script src="javascript/script.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<title>VX KotH</title>
</head>
<body>
<!-- Container -->
<div id="grid-container">
<!-- Header -->
<div id="grid-header">
<!-- Top Header -->
<div id="grid-header-top">
<!-- VX KOTH Container -->
<div id="grid-vxkoth-container">
<a href="index.php">
<h3 id="grid-vx">VX</h3>
<h3 id="grid-koth">KOTH</h3>
</a>
</div>
<?php
// If cookie exists and is set
if(isset($_COOKIE['USERNAME'])) {
// Query
$QUERY_ALL_USERS = mysqli_query($conn, "
SELECT
vx.accounts.id,
vx.accounts.username,
vx.accounts.ip
FROM vx.accounts
WHERE vx.accounts.username = '" . $_COOKIE['USERNAME'] . "';
");
// Fetch the results
$RESULT_ALL_USERS = mysqli_fetch_array($QUERY_ALL_USERS);
if($RESULT_ALL_USERS[0] == $_SESSION['USERID']) {
echo '
<div id="grid-account-options">
<p id="grid-myaccount" class="grid-account-managment"><a href="account.php">My Account</a></p>
<p id="grid-logout" class="grid-account-managment">Logout</p>
</div>
';
} else {
// No session userid set
echo '
<div id="grid-account-options">
<p id="grid-register" class="grid-account-managment"><a href="register.php">Register</a></p>
</div>
';
}
} else {
// Cookie either doesnt exist or isnt set
echo '
<div id="grid-account-options">
<p id="grid-register" class="grid-account-managment"><a href="register.php">Register</a></p>
</div>
';
}
?>
</div>
<!-- News -->
<div id="grid-header-news">
<marquee>Latest News From VX</marquee>
</div>
<!-- Bottom Header -->
<div id="grid-header-bottom">
<?php
// If cookie exists and is set
if($_COOKIE['USERNAME']) {
// User exists
// Query
$QUERY_ALL_USERS = mysqli_query($conn, "
SELECT
vx.accounts.id,
vx.accounts.username,
vx.accounts.ip,
vx.accounts.admin,
vx.accounts.permissionArray
FROM vx.accounts
WHERE vx.accounts.username = '" . $_COOKIE['USERNAME'] . "';
");
// Fetch the results
$RESULT_ALL_USERS = mysqli_fetch_array($QUERY_ALL_USERS);
// User is an admin and ip matches
if($RESULT_ALL_USERS[3] == 1 && $RESULTS_ALL_USERS[2] = $_SERVER['REMOTE_ADDR']) {
echo '
<p class="grid-user-display">Logged in as: ' . $_COOKIE['USERNAME'] . ' <a href="admin.php">(Admin)</a></p>
';
} else {
// User is not an admin
echo '
<p class="grid-user-display">Logged in as: ' . $_COOKIE['USERNAME'] . '</p>
';
}
} else {
// Cookie either doesnt exist or isnt set
}
?>
</div>
</div>
<!-- Content -->
<div id="grid-content">
<h1 id="grid-heading-account"><?php echo $_COOKIE['USERNAME']; ?>'s Account</h1>
<!-- Profile Image Container-->
<div id="grid-image-container">
<?php
// Change directory
chdir('img/userimg/' . $_SESSION['USERID'] . '/');
// Glob file check
$GLOB_FILE_CHECK = glob("*.jpg");
// Back to user directory
chdir('..');
// Check directory exists
if(!file_exists('img/userimg/' . $_SESSION['USERID'] . '' . $GLOB_FILE_CHECK[0])) {
echo '
<!-- Profile Picture -->
<img id="grid-account-image" src="img/userimg/' . $_SESSION['USERID'] . '/' . $GLOB_FILE_CHECK[0] . '">
';
}
?>
</div>
<!-- Image Upload -->
<form id="grid-image-upload" method="post" enctype="multipart/form-data"></form>
<div id="grid-image-upload-container">
<input id="grid-file-upload" type="file" name="FILE" form="grid-image-upload">
<input id="grid-file-submit" type="submit" name="SUBMIT" form="grid-image-upload">
</div>
<?php
// Make sure the post field isnt empty
if(!empty($_POST['SUBMIT'])) {
// Set up remote addresses for file upload
$REMOTE_DIR = "img\userimg\'" . $_SESSION['USERID'] . "'";
$REMOTE_FILE = basename($_FILES['FILE']["name"]);
// Set up the upload
$IMAGE_FILE = strtolower(pathinfo($REMOTE_DIR, PATHINFO_EXTENSION));
// Post field isnt empty
// Make sure the post field is set
if(isset($_POST['SUBMIT'])) {
// Post field is set
// Check the file size
$CHECK = getimagesize($_FILES['FILE']["tmp_name"]);
// Make sure the file is an image
if($CHECK !== FALSE) {
// Is image file
if($_FILES['FILE']["size"] < 1000000) {
// File size is within bounds
// Upload file
// Check directory exists
if(!file_exists('img/userimg/' . $_SESSION['USERID'] . '')) {
chdir('img/userimg/');
echo getcwd();
// Create the directory if not already exists
mkdir($_SESSION['USERID'] , 0077, false);
chdir($_SESSION['USERID']);
$GLOB_FILE_CHECK = glob("*.jpg");
// Check file exists
if($GLOB_FILE_CHECK[0] != $REMOTE_FILE) {
// File exists
// Delete the file
unlink($GLOB_FILE_CHECK[0]);
// Redirect so that the page updates and loads the image
header('Location: account.php');
}
// Check if file was uploaded
if(move_uploaded_file($_FILES['FILE']["tmp_name"], $REMOTE_FILE)) {
// File uploaded
$ERROR = FALSE;
echo '
<p id="grid-image-inform">File uploaded!</p>
';
} else {
$ERROR = TRUE;
echo '
<p id="grid-image-inform">Error uploading file</p>
';
}
} else {
$ERROR = TRUE;
echo '
<p id="grid-image-inform">File directory already exists</p>
';
}
} else {
// File size is out of bounts
$ERROR = TRUE;
echo '
<p id="grid-image-inform">File is too big</p>
';
}
} else {
// Not image file
$ERROR = TRUE;
echo '
<p id="grid-image-inform">File isnt a valid image file</p>
';
}
} else {
// Post field isnt set
$ERROR = TRUE;
echo '
<p id="grid-image-inform">Select an image to upload</p>
';
}
} else {
// Post field is empty
$ERROR = TRUE;
echo '
<p id="grid-image-inform">Select an image to upload</p>
';
}
// Check for error
if($ERROR == FALSE) {
echo '
<p id="grid-image-inform">Max dimensions: 150x150, 1MB</p>
';
}
?>
<!-- Headings -->
<h1 id="grid-heading-settings">Settings</h1>
<h1 id="grid-heading-controls">Controls</h1>
<h1 id="grid-heading-other">Other</h1>
<!-- Account Settings -->
<div id="grid-settings">
<!-- Form -->
<form id="grid-form-account-settings-username" method="post"></form>
<form id="grid-form-account-settings-password" method="post"></form>
<form id="grid-form-account-settings-nickname" method="post"></form>
<form id="grid-form-account-settings-email" method="post"></form>
<!-- Options -->
<p id="grid-account-settings-username-text" class="grid-account-paragraph">Change Username</p>
<p id="grid-account-settings-password-text" class="grid-account-paragraph">Change Password</p>
<p id="grid-account-settings-nickname-text" class="grid-account-paragraph">Change Nickname</p>
<p id="grid-account-settings-email-text" class="grid-account-paragraph">Change Email</p>
<!-- <p id="grid-account-settings-notifications-text" class="grid-account-paragraph">Email Notifications</p>-->
<?php
// Check to make sure post fields arent empty
if(!empty($_POST['NEW_USERNAME'])) {
// Query the users
$QUERY_USER = mysqli_query($conn, "
SELECT
vx.accounts.id,
vx.accounts.username,
vx.accounts.email
FROM vx.accounts
WHERE vx.accounts.id = '" . $_SESSION['USERID'] . "' AND vx.accounts.username = '" . $_COOKIE['USERNAME'] . "';
");
// Fetch results
$RESULT_USER = mysqli_fetch_array($QUERY_USER);
// Check to see if username is the same
if($_POST['NEW_USERNAME'] == $RESULT_USER[1]) {
// Username is the same
echo '
<p class="grid-settings-alert">Username is the same!</p>
';
} else {
// Username isnt the same
// Send the email
$EMAIL = mail($RESULT_USER[2], "VX: Username Change Request", "
Greetings '" . $RESULT_USER[1] . "'.
A username change request was requested from '" . $_SERVER['REMOTE_ADDR'] . "'.
If this was you, please follow the link to follow up on the username change process.
If this was not you, consider changing your account details in order to secure it.
Username change request link: http://www.vxlabs.us/VX_Koth_v3/reset.php?Type=Username&Username='" . $_COOKIE['USERNAME'] . "'&Session='" . $_COOKIE['PHPSESSID'] . "'
- VX Admin Team
", "From: admin@vxlabs.com");
if($EMAIL == true) {
echo '
<p class="grid-settings-alert">Email sent!</p>
';
} else {
echo '
<p class="grid-settings-alert">Error sending email!</p>
';
}
}
}
// Check to make sure post field isnt empty
if(!empty($_POST['NEW_PASSWORD'])) {
// Query the users
$QUERY_PASSWORD = mysqli_query($conn, "
SELECT
vx.accounts.id,
vx.accounts.username,
vx.accounts.email,
vx.accounts.password
FROM vx.accounts
WHERE vx.accounts.id = '" . $_SESSION['USERID'] . "' AND vx.accounts.username = '" . $_COOKIE['USERNAME'] . "';
");
// Fetch results
$RESULT_PASSWORD = mysqli_fetch_array($QUERY_PASSWORD);
// Check to see if password is the same
if($_POST['NEW_PASSWORD'] == $RESULT_PASSWORD[3]) {
// Password is the same
echo '
<p class="grid-settings-alert">Password is the same!</p>
';
} else {
// Password isnt the same
// Send the email
$EMAIL = mail($RESULT_PASSWORD[2], "VX: Password Change Request", "
Greetings '" . $RESULT_PASSWORD[1] . "'.
A password change request was requested from '" . $_SERVER['REMOTE_ADDR'] . "'.
If this was you, please follow the link to follow up on the password change process.
If this was not you, consider changing your account details in order to secure it.
Password change request link: http://www.vxlabs.us/VX_Koth_v3/reset.php?Type=Password&Username='" . $_COOKIE['USERNAME'] . "'&Session='" . $_COOKIE['PHPSESSID'] . "'
- VX Admin Team
", "From: admin@vxlabs.com");
if($EMAIL == true) {
echo '
<p class="grid-settings-alert">Email sent!</p>
';
} else {
echo '
<p class="grid-settings-alert">Error sending email!</p>
';
}
}
}
// Check to make sure post field isnt empty
if(!empty($_POST['NEW_NICKNAME'])) {
// No auth required for nickname change
// Create the query
$QUERY_SELECT_NICKNAME = mysqli_query($conn, "
SELECT
vx.accounts.id,
vx.accounts.nickname
FROM vx.accounts
WHERE vx.accounts.id = '" . $_SESSION['USERID'] . "' AND vx.accounts.username = '" . $_COOKIE['USERNAME'] . "';
");
// Fetch the results
$RESULT_SELECT_NICKNAME = mysqli_fetch_array($QUERY_SELECT_NICKNAME);
// Check to see if nicknames are the same
if($_POST['NEW_NICKNAME'] = $RESULT_SELECT_NICKNAME[1]) {
// Nicknames the same
echo '
<p class="grid-settings-alert">Nickname is the same!</p>
';
} else {
// Nicknames not the same
// Create the query
$QUERY_UPDATE_NICKNAME = mysqli_query($conn, "
UPDATE vx.accounts
SET vx.accounts.nickname = '" . $_POST['NEW_NICKNAME'] . "'
WHERE vx.accounts.id = '" . $_SESSION['USERID'] . "' AND vx.accounts.username = '" . $_COOKIE['USERNAME'] . "';
");
}
}
// Check to make sure post field isnt empty
if(!empty($_POST['NEW_EMAIL'])) {
// Query the users
$QUERY_EMAIL = mysqli_query($conn, "
SELECT
vx.accounts.id,
vx.accounts.username,
vx.accounts.email
FROM vx.accounts
WHERE vx.accounts.id = '" . $_SESSION['USERID'] . "' AND vx.accounts.username = '" . $_COOKIE['USERNAME'] . "';
");
// Fetch results
$RESULT_EMAIL = mysqli_fetch_array($QUERY_EMAIL);
// Check to see if email is the same
if($_POST['NEW_EMAIL'] == $RESULT_EMAIL[2]) {
// Email is the same
echo '
<p class="grid-settings-alert">Email is the same!</p>
';
} else {
// Email isnt the same
// Send the email
$EMAIL = mail($RESULT_EMAIL[2], "VX: Email Change Request", "
Greetings '" . $RESULT_EMAIL[1] . "'.
A email change request was requested from '" . $_SERVER['REMOTE_ADDR'] . "'.
If this was you, please follow the link to follow up on the email change process.
If this was not you, consider changing your account details in order to secure it.
Email change request link: http://www.vxlabs.us/VX_Koth_v3/reset.php?Type=Email&Username='" . $_COOKIE['USERNAME'] . "'&Session='" . $_COOKIE['PHPSESSID'] . "'
- VX Admin Team
", "From: admin@vxlabs.com");
if($EMAIL == true) {
echo '
<p class="grid-settings-alert">Email sent!</p>
';
} else {
echo '
<p class="grid-settings-alert">Error sending email!</p>
';
}
}
}
?>
</div>
<!-- Account Web Controls -->
<div id="grid-controls">
<!-- Form -->
<form id="grid-form-account-controls" method="post"></form>
<?php
// Cookie check
if($_COOKIE['NIGHTMODE'] == 'false' || !$_COOKIE['NIGHTMODE']) {
// If in lightmode
echo '
<!-- Options -->
<p id="grid-controls-nightmode-text" class="grid-account-paragraph">Nightmode</p>
';
} else if($_COOKIE['NIGHTMODE'] == 'true') {
// If in nightmode
echo '
<!-- Options -->
<p id="grid-controls-nightmode-text" class="grid-account-paragraph">Lightmode</p>
';
}
?>
</div>
<script>
// Nightmode element check and cookie setter
// If element exists
if(document.getElementById("grid-controls-nightmode-text")) {
// Element exists
// Add event listner
document.getElementById("grid-controls-nightmode-text").addEventListener("click", function() {
// Clicked
// enabled var
var enabled = false;
// Check the textcontext
if(document.getElementById("grid-controls-nightmode-text").textContent == "Nightmode") {
// If currently in lightmode
enabled = true;
// Set the cookie
document.cookie ="NIGHTMODE = true; expires=Thu, 18 Dec 2023 12:00:00 UTC; path=/";
// Change text context
document.getElementById("grid-controls-nightmode-text").textContent = "Lightmode";
// Redirect
window.open('account.php', '_self');
} else if(document.getElementById("grid-controls-nightmode-text").textContent == "Lightmode") {
// If currently in nightmode
enabled = false;
// Set the cookie
document.cookie = "NIGHTMODE = false; expires=Thu, 18 Dec 2023 12:00:00 UTC; path=/";
// Change text context
document.getElementById("grid-controls-nightmode-text").textContent = "Nightmode";
// Redirect
window.open('account.php', '_self');
}
}, false);
}
</script>
<!-- Account Other Settings-->
<div id="grid-other">
<!-- Form -->
<form id="grid-form-account-other" method="post"></form>
<?php
// Check if steam is already linked
// Query
$QUERY_PLAYERID = mysqli_query($conn, "
SELECT vx.accounts.playerID
FROM vx.accounts
WHERE vx.accounts.id = '" . $_SESSION['USERID'] . "' AND vx.accounts.username = '" . $_COOKIE['USERNAME'] . "';
");
// Fetch the results
$RESULT_PLAYERID = mysqli_fetch_array($QUERY_PLAYERID);
// Check for player id
if(isset($RESULT_PLAYERID[0])) {
// PlayerID is set
} else {
// PlayerID isnt set
echo '
<!-- Options -->
<p id="grid-other-steam-text" class="grid-account-paragraph"><a id="grid-other-steam-link" href="?login">Link Steam</a></p>
';
}
?>
<!--
<p id="grid-other-vxcoin-text" class="grid-account-paragraph">Purchase VX Coin</p>
<p id="grid-other-membership-text" class="grid-account-paragraph">Purchase VX Membership</p>
-->
</div>
</div>
<!-- Footer -->
<div id="grid-footer">
<!-- Logos and Association-->
<img id="grid-footer-vx-logo" src="img/VXLogo.png">
<img id="grid-footer-armahosts-logo" src="img/ArmaHosts.png">
<!-- General Information -->
<div id="grid-footer-information">
<!-- Headings -->
<h3 id="grid-footer-heading-general" class="grid-footer-headings">GENERAL</h3>
<h3 id="grid-footer-heading-misc" class="grid-footer-headings">MISC</h3>
<h3 id="grid-footer-heading-break" class="grid-footer-headings">LEGAL</h3>
<!-- General -->
<p id="grid-footer-general-home" class="grid-footer-links"><a href="index.php">Home</a></p>
<p id="grid-footer-general-player" class="grid-footer-links"><a href="player.php">Player Panel</a></p>
<!-- Legal -->
<p id="grid-footer-legal-contact" class="grid-footer-links"><a href="legal.php?part=Contact">Contact</a></p>
<p id="grid-footer-legal-copyright" class="grid-footer-links"><a href="legal.php?part=Copyright">Copyright</a></p>
<p id="grid-footer-legal-privacy" class="grid-footer-links"><a href="legal.php?part=Privacy">Privacy</a></p>
<!-- Misc -->
<p id="grid-footer-misc-vxgaming" class="grid-footer-links"><a href="https://www.vxkoth.com/">VX KOTH</a></p>
<p id="grid-footer-misc-faq" class="grid-footer-links"><a href="https://www.vxkoth.com/faqs">FAQ</a></p>
<p id="grid-footer-misc-sitrep" class="grid-footer-links"><a href="https://www.vxkoth.com/blog">Sitreps</a></p>
</div>
<!-- Social Media -->
<div id="grid-footer-media">
<img id="grid-footer-facebook-logo" class="grid-footer-logos" src="img/FacebookLogo.png">
<img id="grid-footer-twitter-logo" class="grid-footer-logos" src="img/TwitterLogo.png">
<img id="grid-footer-youtube-logo" class="grid-footer-logos" src="img/YoutubeLogo.png">
<img id="grid-footer-discord-logo" class="grid-footer-logos" src="img/DiscordLogo.png">
<p id="grid-footer-misc-disclaimer">This website is not affiliated or authorized by Bohemia Interactive. Bohemia Interactive, ARMA, DAYZ and all associated logos and designs are trademarks of Bohemia Interactive</p>
</div>
</div>
</div>
<?php
// Nightmode settings
// Check cookie value
if($_COOKIE['NIGHTMODE'] == 'true') {
echo '
<script>
// Set to nightmode
// Check container exists
if(document.getElementById("grid-container")) {
// Element exists
// Change background colour
document.getElementById("grid-container").style.backgroundColor = "#3e3e3e";
// Change heading colour
for(var i = 0; i < document.getElementsByTagName("h1").length; i++) {
document.getElementsByTagName("h1")[i].style.color = "#FFFFFF";
}
// Change text colour
for(var i = 0; i < document.getElementsByTagName("p").length; i++) {
document.getElementsByTagName("p")[i].style.color = "#FFFFFF";
}
// Check element exists
if(document.getElementById("grid-file-upload")) {
// Change file upload colour;
document.getElementById("grid-file-upload").style.color = "#FFFFFF";
}
// Check element exists
if(document.getElementById("grid-other-steam-link")) {
// Change colour
document.getElementById("grid-other-steam-link").style.color = "#FFFFFF";
}
// Set header colour incase it was changed
document.getElementsByClassName("grid-user-display")[0].style.color = "#FFFFFF";
document.getElementsByClassName("grid-account-managment")[1].style.color = "#FFFFFF";
}
</script>
';
} else if($_COOKIE['NIGHTMODE'] == 'false') {
echo '
<script>
// Set to nightmode
// Check container exists