2020-06-18 14:48:12 +02:00
|
|
|
<?php session_start(); ?>
|
2020-06-18 10:35:01 +02:00
|
|
|
<html class="no-js" lang="es">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
|
|
<title>Gestión de citas</title>
|
|
|
|
<meta name="description" content="">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2020-06-23 01:04:59 +02:00
|
|
|
<link rel="stylesheet" href="static/style.css" type="text/css" media="screen"/>
|
|
|
|
<link rel="stylesheet" href="static/fullcalendar.css" type="text/css" media="screen"/>
|
2020-06-21 19:36:38 +02:00
|
|
|
<script src="static/jquery-3.5.1.min.js"></script>
|
2020-06-23 01:04:59 +02:00
|
|
|
<script src="static/jquery-ui.min.js"></script>
|
|
|
|
<script src="static/moment.min.js"></script>
|
|
|
|
<script src="static/fullcalendar.min.js"></script>
|
2020-06-18 10:35:01 +02:00
|
|
|
<script src="calendar.js"></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
2020-06-21 21:40:25 +02:00
|
|
|
<?php include 'navbar.php'; ?>
|
2020-06-21 20:38:22 +02:00
|
|
|
<?php
|
|
|
|
include 'database.php';
|
|
|
|
|
2020-06-23 01:04:59 +02:00
|
|
|
#$pdo = connectDatabase();
|
|
|
|
#$data = fetchCalendarEvents($pdo);
|
2020-06-21 20:38:22 +02:00
|
|
|
?>
|
2020-06-18 15:59:21 +02:00
|
|
|
<div class="response"></div>
|
2020-06-23 01:04:59 +02:00
|
|
|
<div id="calendar"></div>
|
2020-06-18 10:35:01 +02:00
|
|
|
</body>
|
|
|
|
</html>
|