aboutsummaryrefslogtreecommitdiff
path: root/src/view/templates/maintenance.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/view/templates/maintenance.php')
-rw-r--r--src/view/templates/maintenance.php27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/view/templates/maintenance.php b/src/view/templates/maintenance.php
new file mode 100644
index 0000000..217dcb7
--- /dev/null
+++ b/src/view/templates/maintenance.php
@@ -0,0 +1,27 @@
1<?php declare(strict_types=1); ?>
2<!DOCTYPE html>
3<html lang="fr">
4 <head>
5 <meta charset="utf-8">
6 <title>Site en maintenance</title>
7 <link rel="icon" type="" href="">
8 <meta name="description" content="site en maintenance">
9 <meta name="viewport" content="width=device-width">
10 <link rel="stylesheet" href="css/head.css">
11 <link rel="stylesheet" href="css/body.css">
12 <link rel="stylesheet" href="css/foot.css">
13 </head>
14 <body>
15 <main>
16 <p>Le site est en cours de maintenance.</p>
17 <p>Il devrait être de nouveau accessible très bientôt.</p>
18 </main>
19 <footer>
20 <div class="logged_out">
21 <button>
22 <a href="<?= new URL(['page' => 'connection']) ?>">Mode admin</a>
23 </button>
24 </div>
25 </footer>
26 </body>
27</html> \ No newline at end of file