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: kyc.php
<?php include_once 'header.php'; ?> <form method="POST" action="<?php echo $alamat_website . 'process_kyc'; ?>" enctype="multipart/form-data"> <?php session_start(); $nama_anggota = $_SESSION['nama_pengguna_anggota']; $stmt = $koneksi->prepare("SELECT * FROM anggota WHERE nama_pengguna_anggota = ?"); $stmt->bind_param("s", $nama_anggota); $stmt->execute(); $result = $stmt->get_result(); if ($result && $result->num_rows > 0) { $data = $result->fetch_assoc(); ?> <!-- Judul Form Registrasi KYC --> <h2 class="text-lg font-bold text-center mb-4">FORM REGISTRASI KYC</h2> <!-- Verifikasi Email --> <div class="mb-4"> <label for="email" class="block text-sm font-medium text-gray-700">Email Anda</label> <input type="email" id="email" name="email_anggota" value="<?php echo htmlspecialchars($data['email_anggota']); ?>" readonly class="mt-1 block w-full p-2 border border-gray-300 rounded-md bg-gray-200 cursor-not-allowed"> </div> <!-- Verifikasi Nomor Ponsel --> <div class="mb-4"> <label for="phone" class="block text-sm font-medium text-gray-700">Nomor Whatsapp Anda</label> <input type="tel" id="phone" name="telepon_anggota" value="<?php echo htmlspecialchars($data['telepon_anggota']); ?>" readonly class="mt-1 block w-full p-2 border border-gray-300 rounded-md bg-gray-200 cursor-not-allowed"> </div> <!-- Unggah Dokumen Identitas --> <div class="mb-4"> <label for="identity_document" class="block text-sm font-medium text-gray-700">Unggah Dokumen Identitas Asli Anda</label> <input type="file" id="identity_document" name="identity_document" accept=".jpg, .jpeg, .png, .pdf" required class="mt-1 block w-full p-2 border border-gray-300 rounded-md"> <p class="text-xs text-gray-500 mt-1">Dokumen yang diterima: JPG, PNG, PDF</p> </div> <div class="flex justify-center"> <button type="submit" class="bg-primary text-white py-2 px-4 rounded-lg hover:bg-primary-dark transition duration-300"> Verifikasi Sekarang </button> </div> </div> </div> <?php } else { echo "Data tidak ditemukan."; } $stmt->close(); ?> </form> <?php include_once 'footer.php'; ?>
SIMPAN PERUBAHAN