-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcatalogo-semanas.php
More file actions
78 lines (72 loc) · 2.18 KB
/
Copy pathcatalogo-semanas.php
File metadata and controls
78 lines (72 loc) · 2.18 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php
//Validar si existe cookie de sesion
session_start();
if(!isset($_COOKIE['key_sesion'])){
header('Location: login.php');
die();
}
include_once 'centinel.php';
?>
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Catálogo Semanas</title>
<?php
include_once 'librarys.php';
?>
</head>
<body class="hold-transition dark-mode sidebar-mini layout-fixed layout-navbar-fixed layout-footer-fixed">
<div class="wrapper">
<!-- Preloader -->
<div class="preloader flex-column justify-content-center align-items-center">
<img class="animation__wobble" src="dist/img/AdminLTELogo.png" alt="AdminLTELogo" height="60" width="60">
</div>
<?php
include_once 'navbar.php';
include_once 'navbarRight.php';
?>
<?php
include_once 'sidebar.php';
?>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<div class="content-header">
<div class="container-fluid">
<div class="row mb-2">
<div class="col-sm-6">
<h1 class="m-0">Catálogo Semanas</h1>
</div><!-- /.col -->
<div class="col-sm-6">
<ol class="breadcrumb float-sm-right">
<li class="breadcrumb-item"><a href="#">Admin. Reportes</a></li>
<li class="breadcrumb-item active">Catálogo Semanas</li>
</ol>
</div><!-- /.col -->
</div><!-- /.row -->
</div><!-- /.container-fluid -->
<br>
<input type="date" id="txtFecha" class="form-control" onchange="obtenerSemana()"/>
<span id="txtNumeroSemana"></span>
<br>
<h1>Listado de Semanas</h1>
<span id="tblSemanas"></span>
<!-- /.content-header -->
<!-- /.content-wrapper -->
<!-- Control Sidebar -->
<aside class="control-sidebar control-sidebar-dark">
<!-- Control sidebar content goes here -->
</aside>
<!-- /.control-sidebar -->
<?php
include_once 'footer.php';
?>
</div>
<!-- ./wrapper -->
<?php
echo '<script async src="assets/js/catalogo-semanas.js?token='.date('YmdHis').'"></script>';
?>
</body>
</html>