aboutsummaryrefslogtreecommitdiff
path: root/src/view/templates/maintenance.php
blob: f42b558c748dc13f4d269e52ad3c8832e7e46e93 (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
28
<?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">
        <meta http-equiv="refresh" content="60" /> <!-- rafraîchissement automatique toutes les minutes -->
    </head>
    <body>
        <main>
        	<p>Le site est en cours de maintenance.</p>
        	<p>Il devrait être de nouveau accessible rapidement.</p>
        </main>
        <footer>
            <div class="logged_out">
                <button>
                    <a href="<?= new URL(['page' => 'connection']) ?>">Mode admin</a>
                </button>
            </div>
        </footer>
    </body>
</html>