aboutsummaryrefslogtreecommitdiffstats
path: root/php/login.php
diff options
context:
space:
mode:
authoradam <adam@>2021-01-29 03:26:28 +0200
committeradam <adam@>2021-01-29 03:26:28 +0200
commit472e170f408e3d8d1db2eb066d445153aad55d73 (patch)
tree7b748d2b87ab018d7ff451b4111a1b88eeb58416 /php/login.php
parent5d3d901d968db7eb3da9c038e6d823f7c75f1e10 (diff)
downloadfileup-472e170f408e3d8d1db2eb066d445153aad55d73.tar.gz
register and login looks ok
Diffstat (limited to 'php/login.php')
-rw-r--r--php/login.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/php/login.php b/php/login.php
new file mode 100644
index 0000000..e6d44dc
--- /dev/null
+++ b/php/login.php
@@ -0,0 +1,25 @@
+<?php
+require_once "user.php";
+require_once "database.php";
+require_once "misc.php";
+
+$username=$_POST["username"];
+$password=$_POST["password"];
+/*server side verification*/
+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");
+}
+
+echo "Username: {$user->username}\n";
+echo "Email: {$user->email_address}";
+
+
+?>