Server IP : 184.154.167.98 / Your IP : 18.118.198.191 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 : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/puertode/public_html/libreria/ |
Upload File : |
<!DOCTYPE html> <?php session_start(); if(ISSET($_SESSION['admin_id'])){ header('location:home.php'); } ?> <html lang = "eng"> <head> <title>Sistema de Biblioteca | Platea21</title> <meta charset = "utf-8" /> <meta name = "viewport" content = "width=device-width, initial-scale=1" /> <link rel = "stylesheet" type = "text/css" href = "css/bootstrap.css" /> </head> <body style = "background-color:#d3d3d3;"> <nav class = "navbar navbar-default navbar-fixed-top"> <div class = "container-fluid"> <div class = "navbar-header"> <img src = "images/logo.png" width = "50px" height = "50px" /> <h4 class = "navbar-text navbar-right">Sistema de Biblioteca | Platea21</h4> </div> </div> </nav> <div class = "container-fluid" style = "margin-top:70px;"> <div class = "col-lg-3 well"> <br /> <br /> <h4>Inicie sesión aqui...</h4> <hr style = "border:1px solid #d3d3d3; width:100%;" /> <form enctype = "multipart/form-data"> <div id = "username_warning" class = "form-group"> <label class = "control-label">Usuario:</label> <input type = "text" class = "form-control" id = "username"/> </div> <div id = "password_warning" class = "form-group"> <label class = "control-label">Contraseña:</label> <input type = "password" class = "form-control" id = "password"/> </div> <br /> <div class = "form-group"> <button type = "button" id = "login" class = "btn btn-primary btn-block"><span class = "glyphicon glyphicon-save"></span> Iniciar Sesión</button> </div> </form> <div id = "result"></div> <br /> <br /> <br /> <br /> <br /> <br /> </div> <div class = "col-lg-1"></div> <div class = "col-lg-8 well"> <img src = "images/back.jpg" height = "449px" width = "100%" /> </div> </div> <nav class = "navbar navbar-default navbar-fixed-bottom"> <div class = "container-fluid"> <label class = "navbar-text pull-right">Sistema de Biblioteca | Platea21 © Todos los Derechos Reservados 2018</label> </div> </nav> </body> <script src = "js/jquery.js"></script> <script src = "js/bootstrap.js"></script> <script src = "js/login.js"></script> </html>