forked from piqah/DevWeb
15 lines
284 B
PHP
15 lines
284 B
PHP
<?php
|
|
require 'includes/config.php';
|
|
|
|
if (!isset($_SESSION['admin'])) {
|
|
http_response_code(403);
|
|
die("Accès interdit chenapan");
|
|
}
|
|
|
|
require 'includes/header.php';
|
|
?>
|
|
<h1>FLAG</h1>
|
|
<p><?= htmlspecialchars(FLAG, ENT_QUOTES, 'UTF-8') ?></p>
|
|
<?php
|
|
require 'includes/footer.php';
|