Remove old validation system

This commit is contained in:
Nicolas Le Goff
2013-06-17 12:23:26 +02:00
parent c509a1bf47
commit e9569b2066
177 changed files with 0 additions and 35046 deletions

View File

@@ -1,10 +0,0 @@
<?php
// wait a second to simulate a some latency
usleep(500000);
$user = $_REQUEST['user'];
$pw = $_REQUEST['password'];
if($user && $pw && $pw == "foobar")
echo "Hi $user, welcome back.";
else
echo "Your password is wrong (must be foobar).";
?>