⚝
One Hat Cyber Team
⚝
Your IP:
192.168.31.6
Server IP:
192.168.1.11
Server:
Linux pams 6.1.0-29-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.123-1 (2025-01-02) x86_64
PHP Version:
8.2.28
Buat File
|
Buat Folder
Upload File
Eksekusi
Dir :
~
/
var
/
www
/
lppm
/
app
/
Views
/
Viewing : backend.php
<!DOCTYPE html> <html lang="en"> <?=view('partials/head')?> <body class="hold-transition sidebar-mini layout-fixed text-sm"> <div class="wrapper"> <!-- Preloader --> <div class="preloader flex-column justify-content-center align-items-center"> <img class="animation__shake" src="<?=base_url('assets/dist')?>/img/AdminLTELogo.png" alt="AdminLTELogo" height="60" width="60"> </div> <?=view('partials/nav')?> <!-- Main Sidebar Container --> <aside class="main-sidebar sidebar-dark-primary elevation-4"> <?=view('partials/logo')?> <?=view('partials/sidebar')?> </aside> <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <?php if(isset($body)){ echo view($body); }else{ echo "body Belum di set"; } ?> </div> <!-- /.content-wrapper --> <?=view('partials/footer')?> <!-- Control Sidebar --> <aside class="control-sidebar control-sidebar-dark"> <!-- Control sidebar content goes here --> </aside> <!-- /.control-sidebar --> </div> <!-- ./wrapper --> <?=view('partials/script')?> <script type="text/javascript"> var fd = JSON.parse('<?=json_encode(session()->getFlashdata())?>'); if(fd.status == 200){ Swal.fire({ title: fd.title, text: fd.pesan, type: fd.type, confirmButtonColor: '#3b5de7', }) } function hapus(url){ Swal.fire({ title: 'Confirm', text: 'Apakah anda yakin ingin menghapus data?', type: 'warning', confirmButtonColor: '#3b5de7', showCancelButton: true, cancelButtonColor: '#d33', confirmButtonText: 'Ya, hapus!', cancelButtonText: 'Batal' }).then((result) => { if (result.value) { window.location.href = url; } }); } </script> </body> </html>