14 lines
400 B
PHP
14 lines
400 B
PHP
<?php
|
|
|
|
require "common/init.php";
|
|
require "fn/auth.php";
|
|
|
|
$authData = json_decode(file_get_contents("php://input"), true);
|
|
$user = json_decode($authData['user'], true);
|
|
|
|
if (checkPassword($authData['username'], $authData['password']) === true) {
|
|
echo '{"status":1,"username":"' . $authData['username'] . '","permissions":{"/":["*"]}}';
|
|
http_response_code(200);
|
|
} else {
|
|
http_response_code(403);
|
|
}
|