blob: 217dcb7a47c9f958e3450135ba665d7ad5e6a285 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<?php declare(strict_types=1); ?>
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Site en maintenance</title>
<link rel="icon" type="" href="">
<meta name="description" content="site en maintenance">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="css/head.css">
<link rel="stylesheet" href="css/body.css">
<link rel="stylesheet" href="css/foot.css">
</head>
<body>
<main>
<p>Le site est en cours de maintenance.</p>
<p>Il devrait être de nouveau accessible très bientôt.</p>
</main>
<footer>
<div class="logged_out">
<button>
<a href="<?= new URL(['page' => 'connection']) ?>">Mode admin</a>
</button>
</div>
</footer>
</body>
</html>
|