-
Notifications
You must be signed in to change notification settings - Fork 1
/
GestionReportes.php
44 lines (43 loc) · 1.67 KB
/
GestionReportes.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
include("header.php");
?>
<body style="background-image:url(login.jpg) !important; background-size:cover">
<div class="search container blue darken-4 z-depth-1">
<form style="margin-top:20px;">
<div style="padding:10px; border-radius: 10px;" class="row white">
<h2 class="center">Gestión de Reportes</h2>
<h5 class="center">Seleccione una fecha "desde" y "hasta".</h5>
<hr>
<div class="left col s5">
<input id="input-ini" placeholder="Seleccione la Fecha Inicial" type="text" class="datepicker">
</div>
<div class="right col s5">
<input id="input-fin" placeholder="Seleccione la Fecha Final" type="text" class="datepicker">
</div>
</div>
</form>
<button class="buscar-reporte btn waves-effect waves-light orange darken-3">Buscar
<i class="material-icons right">search</i>
</button>
</div>
<br>
<br>
<div class="container table">
<table class="white">
<thead>
<tr>
<th data-field="id">Id</th>
<th data-field="cont">Contenedor (Lote)</th>
<th data-field="almO">Almacen Origen</th>
<th data-field="almD">Almacen Destino</th>
<th data-field="fecha">Fecha</th>
</tr>
</thead>
<tbody id ="reportes">
</tbody>
</table>
</div>
</body>
<script type="text/javascript" src="js/reportes.js"></script>
<?php
include("footer.php");