Files
web/php/checkPass.php
Mcat12 5d1761b19d Implemented password checking
Currently allows anything for the password. This will be updated when I implment passwords on the main repo.
2016-02-28 14:52:54 -05:00

10 lines
162 B
PHP

<?php
if(!isset($_GET['pass']))
die("No password entered");
include "functions.php";
if(checkPass($_GET['pass']))
echo "Correct";
else
echo "Wrong";