<?php

include_once __DIR__ . "/../resources/code/models.php";
include_once __DIR__ . "/../resources/code/lang_coverage.php";
include_once __DIR__ . "/../controller/pincho_controller.php";
include_once __DIR__ . "/../controller/pwctrl_user.php";
if (!isset($_SESSION)) {
    session_start();
}
if (get_class($_SESSION["user"]) != "Administrador") {
    header("Location: 403.php");
    exit;
}
$pinchoList = Pincho::getAllPropuestas();
?>

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title><?php 
echo $l["view_admin_proposeManage"];
?>
</title>
    
    <!-- Main CSS file -->
    <link rel="stylesheet" href="../css/bootstrap.min.css" />
    <link rel="stylesheet" href="../css/owl.carousel.css" />
    <link rel="stylesheet" href="../css/font-awesome.css" />