Server IP : 184.154.167.98 / Your IP : 52.14.66.242 Web Server : Apache System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : puertode ( 1767) PHP Version : 8.2.26 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/puertode/public_html/oficios/sis/ |
Upload File : |
<?php require('includes/config.php'); //if not logged in redirect to login page if(!$user->is_logged_in()){ header('Location: index.php'); exit(); } //define page title $title = 'Oficios | API Tampico'; //include header template require('layout/header.php'); ?> <div class="container"> <div class="row"> <div class="col-xs-12 col-sm-8 col-md-6 col-sm-offset-2 col-md-offset-3"> <h2>Bienvenido <?php echo htmlspecialchars($_SESSION['username'], ENT_QUOTES); ?></h2> <p><a href='logout.php'>Cerrar SesiĆ³n</a></p> <hr> <br> <img src="layout/oficios.png" width="250" height="300"> </div> </div> </div> <?php //include header template require('layout/footer.php'); ?>