aboutsummaryrefslogtreecommitdiffstats
path: root/php/login.php
diff options
context:
space:
mode:
authorAlex Vitkov <alexvitkov98@gmail.com>2021-02-13 12:43:07 +0200
committerAlex Vitkov <alexvitkov98@gmail.com>2021-02-13 12:43:07 +0200
commit0c56b6431133facf94f83faf920cfa58e311dd19 (patch)
tree7d18ff74ccc139bbbb9bdcdb4412e1eea42c4d37 /php/login.php
parentf10a55259c4eda39e909bc54ac97744a4d053b8a (diff)
parente4c0f4eeaa3f1a0707d6bf668619bb48b77c43ce (diff)
downloadfileup-0c56b6431133facf94f83faf920cfa58e311dd19.tar.gz
Merge branch 'master' of https://github.com/alexvitkov/india
Diffstat (limited to 'php/login.php')
-rw-r--r--php/login.php2
1 files changed, 0 insertions, 2 deletions
diff --git a/php/login.php b/php/login.php
index c26445e..6fb3909 100644
--- a/php/login.php
+++ b/php/login.php
@@ -13,14 +13,12 @@ if(gettype($username)!="string" || gettype($password)!="string")
die("You didn't specify the pass or the username");
}
-$database=new Database();
$user=$database->authenticate($username,$password);
if(!$user)
{
die("Password or username is incorrect");
}
-$_SESSION['username'] = $user->username;
$_SESSION['user_object'] = $user;
header('Location: /');