| Server IP : 193.86.120.172 / Your IP : 216.73.216.215 Web Server : Apache/2.4.63 (Unix) System : Linux JServices 3.10.108 #86003 SMP Wed Oct 22 13:20:46 CST 2025 x86_64 User : kubec ( 1026) PHP Version : 8.2.28 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /volume1/web/jservices_cz/ |
Upload File : |
<?php
declare(strict_types=1);
require_once __DIR__ . '/config.php';
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
$username = trim((string) ($_POST['username'] ?? ''));
$password = (string) ($_POST['password'] ?? '');
if ($username !== '' && $password !== '') {
$stmt = $pdo->prepare('SELECT id, password_hash FROM admin_users WHERE username = :u');
$stmt->execute(['u' => $username]);
$admin = $stmt->fetch();
if ($admin && password_verify($password, $admin['password_hash'])) {
session_regenerate_id(true);
$_SESSION['admin_id'] = $admin['id'];
$upd = $pdo->prepare('UPDATE admin_users SET last_login = NOW() WHERE id = :id');
$upd->execute(['id' => $admin['id']]);
header('Location: admin.php');
exit;
}
}
header('Location: admin.html?chyba=1');
exit;
}
header('Location: admin.html');
exit;