added old project files

This commit is contained in:
2020-05-16 20:41:32 +02:00
parent 177e267e18
commit b264ae0ee2
21 changed files with 796 additions and 0 deletions

10
php/checkpasswd.php Executable file
View File

@@ -0,0 +1,10 @@
<?php
if ($_POST['pass'] == "42answertoeverything") {
echo json_encode(array('valid' => true));
}else {
echo json_encode(array('valid' => false));
}
?>