forked from rebillar/site-accueil-insa
22 lines
No EOL
560 B
PHP
22 lines
No EOL
560 B
PHP
<?php
|
|
ob_start(); // Start reading html
|
|
$relativePath = "../";
|
|
?>
|
|
<div class="inner">
|
|
<h1>ADMIN</h1>
|
|
<h2>Bienvenue sur la page d'administration</h2>
|
|
|
|
<a href="scores.php">Editer les scores</a>
|
|
<br>
|
|
<a href="map.php">Editer le texte de la carte</a>
|
|
<br>
|
|
<a href="planning.php">Editer le planning</a>
|
|
</div>
|
|
|
|
|
|
<?php
|
|
$pageContent = ob_get_clean(); // Store html content in variable
|
|
$pageTitle = "ADMIN";
|
|
|
|
include($relativePath . "includes/template.php"); // Display template with variable content
|
|
?>
|