2019-05-18 14:55:49 +02:00
|
|
|
<?php
|
|
|
|
ob_start(); // Start reading html
|
|
|
|
$relativePath = "../";
|
|
|
|
?>
|
|
|
|
<h1>ADMIN</h1>
|
2019-05-19 20:04:02 +02:00
|
|
|
<h2>Bienvenue sur la page d'administration</h2>
|
2019-05-18 14:55:49 +02:00
|
|
|
|
2019-05-19 20:04:02 +02:00
|
|
|
<a href="scores.php">Editer les scores</a>
|
2019-05-18 14:55:49 +02:00
|
|
|
<br>
|
2019-05-19 20:04:02 +02:00
|
|
|
<a href="map.php">Editer le texte de la carte</a>
|
2019-05-18 14:55:49 +02:00
|
|
|
|
|
|
|
<?php
|
|
|
|
$pageContent = ob_get_clean(); // Store html content in variable
|
|
|
|
$pageTitle = "ADMIN";
|
|
|
|
|
|
|
|
include($relativePath . "includes/template.php"); // Display template with variable content
|
|
|
|
?>
|