Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
htdocs /
STR /
administrador /
[ HOME SHELL ]
Name
Size
Permission
Action
cotizaciones.php
4.85
KB
-rwxrwxr-x
index.php
1.13
KB
-rwxrwxr-x
materiales.php
2.78
KB
-rwxrwxr-x
orden.php
1.66
KB
-rwxrwxr-x
servicios.php
2.84
KB
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : materiales.php
<!DOCTYPE html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script> <link rel="stylesheet" href="../css/general.css"> <script src="../js/controlMateriales.js"> </script> <title class='titulo'>Materiales</title> </head> <body> <?php include "../componentes/nav.php" ?> <h1 class="titulo">Materiales</h1> <div class="acciones1 container" container-fluid><i></i> <div class="row"> <div class="col-sm-6"> <input class="busqueda" type="text" name="" value="" placeholder="buscar" autocomplete="off"> </div> <div class="col-sm-6"> <input class="botonAgregar btn btn-primary" type="submit" name="" value="agregar" data-toggle="modal" data-target="#myModal" > </div> </div> </div> <div class="contenedor container container-fluid"> <table class="tabla table table-striped "> <tr> <th>id</th> <th>nombre</th> <th>descripcion</th> <th>medida</th> <th>precio</th> <th>acccion</th> </tr> </table> </div> <!-- The Modal --> <div class="modal fade" id="myModal"> <div class="modal-dialog"> <div class="modal-content"> <!-- Modal Header --> <div class="modal-header"> <h4 class="modal-title">Agregar Material</h4> <button type="button" class="close" data-dismiss="modal">×</button> </div> <!-- Modal body --> <div class="modal-body"> <form class="formAgregar" method="post "> <input class="entrada" type="text" name="nombre" value="" placeholder="nombre" required> <input class="entrada" type="text" name="descripcion" value="" placeholder="descripcion" required> medida:<select class="medida" name="medida" id="" required> <option value="">SELECCIONAR</option> <option value="kilo">kilo</option> <option value="metro">metro</option> <option value="pieza">pieza</option> </select> <input class="entrada" type="text" name="precio" value="" placeholder="precio" required> <input type="submit" class="btn-agregar btn btn-success" value="guardar"> </form> </div> </div> </div> </div> </body> </html>
Close