61 lines
1.8 KiB
PHP
61 lines
1.8 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Auditoría asistencial</title>
|
|
<?php
|
|
include 'import/html_css_files.php';
|
|
?>
|
|
<style>
|
|
[v-cloak] {
|
|
display: none;
|
|
}
|
|
</style>
|
|
<script src="js/jquery.min.js"></script>
|
|
<script src="js/jquery-ui.js"></script>
|
|
<script src="js/bootstrap/bootstrap.min.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<?
|
|
$redirect = $_SERVER['PHP_SELF'];
|
|
include "import/html_header.php";
|
|
global $user;
|
|
|
|
html_header(
|
|
"Avisos del checador",
|
|
"Sistema de gestión de checador",
|
|
);
|
|
?>
|
|
|
|
<main class="container-fluid px-4 mt-4" id="app" v-cloak @vue:mounted="mounted" style="min-height: 70vh;">
|
|
<div class="table-responsive">
|
|
<table class="table table-hover table-striped table-bordered table-sm">
|
|
<thead class="thead-dark">
|
|
<tr>
|
|
<th class="text-center">Fecha</th>
|
|
<th class="text-center">Aviso</th>
|
|
<th class="text-center">Estado</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</main>
|
|
|
|
<? include "import/html_footer.php"; ?>
|
|
|
|
<script src="js/jquery.min.js"></script>
|
|
<script src="js/jquery-ui.js"></script>
|
|
<script src="js/bootstrap/bootstrap.min.js"></script>
|
|
<script src="js/datalist.js"></script>
|
|
<script src="js/datepicker-es.js"></script>
|
|
<script src="js/avisos.js?<?= rand(0, 2) ?>" type="module"></script>
|
|
<script src="js/scrollables.js"></script>
|
|
</body>
|
|
|
|
</html>
|