avisos.php 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Auditoría asistencial</title>
  7. <?php
  8. include 'import/html_css_files.php';
  9. ?>
  10. <style>
  11. [v-cloak] {
  12. display: none;
  13. }
  14. </style>
  15. <script src="js/jquery.min.js"></script>
  16. <script src="js/jquery-ui.js"></script>
  17. <script src="js/bootstrap/bootstrap.min.js"></script>
  18. </head>
  19. <body>
  20. <?
  21. $redirect = $_SERVER['PHP_SELF'];
  22. include "import/html_header.php";
  23. global $user;
  24. html_header(
  25. "Avisos del checador",
  26. "Sistema de gestión de checador",
  27. );
  28. ?>
  29. <main class="container-fluid px-4 mt-4" id="app" v-cloak @vue:mounted="mounted" style="min-height: 70vh;">
  30. <div class="table-responsive">
  31. <table class="table table-hover table-striped table-bordered table-sm">
  32. <thead class="thead-dark">
  33. <tr>
  34. <th class="text-center">Fecha</th>
  35. <th class="text-center">Aviso</th>
  36. <th class="text-center">Estado</th>
  37. </tr>
  38. </thead>
  39. <tbody>
  40. </tbody>
  41. </table>
  42. </div>
  43. </main>
  44. <? include "import/html_footer.php"; ?>
  45. <script src="js/jquery.min.js"></script>
  46. <script src="js/jquery-ui.js"></script>
  47. <script src="js/bootstrap/bootstrap.min.js"></script>
  48. <script src="js/datalist.js"></script>
  49. <script src="js/datepicker-es.js"></script>
  50. <script src="js/avisos.js?<?= rand(0, 2) ?>" type="module"></script>
  51. <script src="js/scrollables.js"></script>
  52. </body>
  53. </html>