35 lines
1.1 KiB
PHP
35 lines
1.1 KiB
PHP
<?php
|
|
define('__ROOT__', dirname(__FILE__) );
|
|
require_once __ROOT__.'/manager/security.php';
|
|
?>
|
|
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Page de test sur PHP Excel</title>
|
|
|
|
<!-- Informations de la page -->
|
|
<meta charset='utf-8'>
|
|
|
|
<link type='text/css' rel='stylesheet' href='css/font.css' /> <!-- Gestion globale des Polices -->
|
|
<link type='text/css' rel='stylesheet' href='css/layout.css' /> <!-- Positionnement global des pages -->
|
|
<link type='text/css' rel='stylesheet' href='css/header.css' /> <!-- Gestion du header -->
|
|
<link type='text/css' rel='stylesheet' href='css/container.css'/> <!-- Gestion du container -->
|
|
<link type='text/css' rel='stylesheet' href='css/menu.css' /> <!-- Gestion du menu -->
|
|
<link type='text/css' rel='stylesheet' href='css/global.css' /> <!-- Style global -->
|
|
|
|
|
|
<!-- Dépendences Javascript -->
|
|
<script type='text/javascript' src='API.js' ></script>
|
|
<script type='text/javascript' src='js/pageManager.js' ></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<p>YOLO</p>
|
|
|
|
</body>
|
|
|
|
</html>
|