Near Complete Version

website is now finished with the exception of the captcha, I am having issues authenticating the state of the captcha
This commit is contained in:
lukejelse04
2021-05-13 21:07:34 +01:00
parent 8b851995a4
commit 45c6834231
40 changed files with 7939 additions and 596 deletions

View File

@ -0,0 +1,13 @@
<?php
if($_SERVER['REQUEST_URI'] == "/examples.php"){
include "examples-header.html";
}elseif ($_SERVER['REQUEST_URI'] == "/faq.php") {
include "faq-header.html";
}else{
include "index-header.html";
}
//echo "<script>console.log(' " . $_SERVER['REQUEST_URI'] . " ')</script>";
?>