PATH: /home/hwyuvbry/dear.waroenkhoki123.web.id
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 .htaccess
↓
X
📁 .vscode/
X
📁 .well-known/
X
📄 PlayGame.php
↓
X
📁 _next/
X
📄 about.php
↓
X
📄 account_balance.php
↓
X
📁 ajax/
X
📁 assets/
X
📄 auth-login.php
↓
X
📄 auth-register.php
↓
X
📄 callbackQRIS.php
↓
X
📄 carousel_slider.php
↓
X
📄 casino.php
↓
X
📁 cgi-bin/
X
📄 change-pasword.php
↓
X
📁 classes/
X
📄 deposit-progress.php
↓
X
📄 deposit.php
↓
X
📄 details-promo.php
↓
X
📄 details.php
↓
X
📄 egames.php
↓
X
📄 error_log
↓
X
📁 event/
X
📄 footer.php
↓
X
📄 fungsi_umum.php
↓
X
📄 game-popular.php
↓
X
📄 game-recomended.php
↓
X
📄 header.php
↓
X
📄 history-deposit.php
↓
X
📄 history-withdraw.php
↓
X
📄 home.php
↓
X
📄 htaccess-sc-nuke
↓
X
📄 hwyuvbry_blacky.sql
↓
X
📄 index.php
↓
X
📄 index.php##
↓
X
📄 kanvas.php
↓
X
📄 koneksi.php
↓
X
📄 kyc.php
↓
X
📄 logout.php
↓
X
📄 lottery.php
↓
X
📄 lucky-spin.php
↓
X
📄 my-account.php
↓
X
📄 otp.php
↓
X
📄 pragmatic-game.php
↓
X
📄 process_kyc.php
↓
X
📄 process_login.php
↓
X
📄 process_register.php
↓
X
📄 process_reset_password.php
↓
X
📄 promo.php
↓
X
📄 proses_deposit.php
↓
X
📄 qris-progress.php
↓
X
📄 qris.php
↓
X
📄 referal.php
↓
X
📄 rekening.php
↓
X
📁 rtp/
X
📄 setting.php
↓
X
📄 slot.php
↓
X
📄 sports.php
↓
X
📁 staff/
X
📁 svg/
X
📄 telegram_log.txt
↓
X
📄 test-api.php
↓
X
📁 topadmin/
X
📄 update_saldo.php
↓
X
📁 uploads/
X
📄 withdraw-progress.php
↓
X
📄 withdraw.php
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: qris-progress.php
<?php include_once 'header.php'; // Memeriksa flag di sesi if (empty($_SESSION['valid_navigation'])) { // Jika flag tidak ada, arahkan ke halaman error dengan JavaScript echo ' <script> window.location.replace("home"); </script> '; exit(); } // Menghapus flag setelah validasi unset($_SESSION['valid_navigation']); ?> <div id="notification" class="fixed z-[9999] px-4 pt-3 pb-5 top-3 sm:top-4 sm:right-6 left-3 right-3 sm:ml-auto sm:w-2/3 md:w-1/2 lg:w-[410px] rounded-xl bg-gradient-to-r from-[#007148] to-background-secondary to-50%"> <button id="close-btn" class="h-6 w-6 ml-auto absolute right-3 top-2 z-50"> <svg width="100%" height="100%" viewBox="0 0 24 24" fill="var(--base)" xmlns="http://www.w3.org/2000/svg"> <path d="M18 6 6 18M6 6l12 12" stroke="var(--base)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path> </svg> </button> <div class="flex items-center"> <figure class="flex-none h-12 w-12"> <div title="" role="button" aria-label="animation" tabindex="0" style="width: 100%; height: 100%; overflow: hidden; margin: 0px auto; outline: none;"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512 512" width="512" height="512" preserveAspectRatio="xMidYMid meet" style="width: 100%; height: 100%; transform: translate3d(0px, 0px, 0px); content-visibility: visible;"> <!-- SVG content --> </svg> </div> </figure> <article class="pl-3"> <p class="font-medium">Deposit</p> <p class="text-xs mt-1">Your Deposit request has been processed</p> </article> </div> </div> <script> document.addEventListener('DOMContentLoaded', () => { const notification = document.getElementById('notification'); notification.classList.add('show'); // Menyembunyikan notifikasi setelah 5 detik jika tombol close tidak ditekan setTimeout(() => { if (notification.classList.contains('show')) { notification.classList.add('hide'); // Mengganti halaman setelah notifikasi disembunyikan setTimeout(() => { window.location.replace("deposit"); }, 300); // Delay tambahan untuk memastikan animasi selesai } }, 2000); // Menutup notifikasi secara manual dan mengarahkan ke deposit.php document.getElementById('close-btn').addEventListener('click', () => { notification.classList.remove('show'); notification.classList.add('hide'); setTimeout(() => { window.location.replace("deposit"); }, 300); // Delay tambahan untuk memastikan animasi selesai }); }); </script> <?php include_once 'home.php'; ?>
SIMPAN PERUBAHAN