-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathexcel.php
More file actions
44 lines (39 loc) · 1.11 KB
/
excel.php
File metadata and controls
44 lines (39 loc) · 1.11 KB
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
require_once __DIR__ . '/app/link.php';
?>
<html>
<head>
<meta charset="UTF-8"/>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Bree+Serif|Work+Sans" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/estilos.css">
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/start/jquery-ui.css">
<title>Teccheck</title>
</head>
<body>
<?php
include 'header.php';
?>
<div class="row body">
<?php
include 'menu.php';
?>
<div class="col-md-9 box-container cuerpo">
<h3>Obtener excel<br><br></h3>
<h4 id="info_excel"></h4>
<br><br>
<h4><a href="" id="descarga_excel"></a></h4>
<br><br>
<button type="button" onclick="descargarExcel()" class="btn btn-success btn-lg">Ejecutar</button>
<br>
<?php include 'footer.php'; ?>
</div>
</div>
<script type="text/javascript" src="<?php echo app_url(); ?>js/excel.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("a[href=obtener-excel]").addClass("menu-activo");
});
</script>
</body>
</html>