Beispiel #1
0
<?php

include "../clases/Sesion.php";
include "../modelos/contenido.php";
$contenido = new Contenido();
$sesion = new Sesion();
if ($sesion->sesion_iniciada() == false) {
    header('location:../login.php');
}
$tipos = $contenido->getTipos();
$eventos = $contenido->getEventos();
?>
<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>Llamar Paciente</title>
    <script src="../js/jquery.min.js"></script>
    <!-- Bootstrap -->
    <link rel="stylesheet" href="../css/bootstrap.min.css">
    <link rel="stylesheet" href="../css/bootstrap-theme.min.css">
    <link rel="stylesheet" href="../font-awesome/css/font-awesome.css">
    <link rel="stylesheet" href="../css/vistas.css">
    <link rel="stylesheet" href="../css/bootstrap-clockpicker.css">
    <link rel="stylesheet" href="../css/bootstrap.switch.css">
    <script src="../js/bootstrap.min.js"></script>
    <script src="../js/jquery.form.js"></script>
    <script src="../js/bootstrap-clockpicker.min.js"></script>
    <script src="../js/bootstrap.switch.js"></script>
    <script src="../js/subir_archivo.js?r=<?php 
echo date('d-m-Y H:i:s');