No Description

header.php 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <?php ob_start(); ?>
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8. <title>TANIA</title>
  9. <!-- BOOTSTRAP STYLE IMPORT -->
  10. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
  11. <!-- JQUERY IMPORT-->
  12. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
  13. <!-- BOOTSTRAP JS IMPORT -->
  14. <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
  15. <!-- FONTAWESOME IMPORT -->
  16. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.2/css/all.css">
  17. <!-- APP ICON IMPORT -->
  18. <!-- <link rel="icon" type="image/png" href="img/pen_1024x1024.png" sizes="1024x1024"> -->
  19. <link rel="icon" type="image/png" href="img/pen_800x800.png" sizes="800x800">
  20. <!-- FULLCALENDAR IMPORT -->
  21. <link rel="stylesheet" href="processes/fullcalendar/packages/core/main.css">
  22. <link rel="stylesheet" href="processes/fullcalendar/packages/daygrid/main.css">
  23. <link rel="stylesheet" href="processes/fullcalendar/packages/timegrid/main.css">
  24. <!-- <link href="https://unpkg.com/@fullcalendar/core/main.min.css"> -->
  25. <!-- <link href="https://unpkg.com/@fullcalendar/daygrid/main.min.css"> -->
  26. <!-- CUSTOM STYLES -->
  27. <link rel="stylesheet" href="css/style.css">
  28. <style>
  29. textarea {
  30. resize: vertical;
  31. }
  32. :root {
  33. --size: 12px;
  34. /* 15px for btn-xl */
  35. /* 15px for btn-lg */
  36. /* 12px for btn-md */
  37. /* 10px for btn-sm */
  38. /* 5px for btn-xs */
  39. --period: 750ms;
  40. --color: #3498db;
  41. --bg-color: white;
  42. --thinness: 5;
  43. /* 10 is okay */
  44. }
  45. .loader {
  46. display: inline-block;
  47. width: 12px;
  48. height: 12px;
  49. position: relative;
  50. margin-right: calc(12px / 2);
  51. }
  52. .loader:before, .loader:after {
  53. content: "";
  54. position: absolute;
  55. left: 0; /* make sure it's inside the box */
  56. width: 100%;
  57. height: 100%;
  58. border-radius: 100%;
  59. border: calc(12px / 5) solid transparent;
  60. border-top-color: #3498db;
  61. }
  62. .loader:before {
  63. z-index: 100;
  64. animation: spin 750ms infinite;
  65. }
  66. .loader:after {
  67. border: calc(12px / 5) solid white;
  68. }
  69. @keyframes spin {
  70. 0% {
  71. -webkit-transform: rotate(0deg);
  72. -ms-transform: rotate(0deg);
  73. -o-transform: rotate(0deg);
  74. transform: rotate(0deg);
  75. }
  76. 100% {
  77. -webkit-transform: rotate(360deg);
  78. -ms-transform: rotate(360deg);
  79. -o-transform: rotate(360deg);
  80. transform: rotate(360deg);
  81. }
  82. }
  83. </style>
  84. <script>
  85. // Enable tooltips
  86. $(function () {
  87. $('[data-toggle="tooltip"]').tooltip();
  88. });
  89. </script>
  90. </head>
  91. <?php
  92. //if(!empty($_SESSION) && !isset($_SESSION['error'])): //IF USER IS LOGGED IN (WITHOUT ANY ERROR)
  93. //endif;
  94. ini_set('display_errors', 1);
  95. ini_set('display_startup_errors', 1);
  96. error_reporting(E_ALL);
  97. ?>