MDIS/src/appointment.php

29 lines
1.0 KiB
PHP
Raw Normal View History

2020-06-18 14:48:12 +02:00
<?php session_start(); ?>
<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"/>
<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>
<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
?>
<div class="response"></div>
2020-06-23 01:04:59 +02:00
<div id="calendar"></div>
</body>
</html>