-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
100 lines (90 loc) · 2.69 KB
/
index.php
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?php
include("functions/data-base.php");
if ( $isactivedb == false ) {
echo "Le site n'est pas encore installé";
} else {
echo "Oui";
}
?>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" href="admin/admin-assets/collection.css">
<link rel="icon" href="admin/admin-assets/favicon-collection.png" type="image/png">
<title><?php echo $translation["title"] ?></title>
</head>
<body>
<?php
// Gpc for cookies banner
if (isset($_SERVER['HTTP_SEC_GPC'])) {
$gpc = $_SERVER['HTTP_SEC_GPC'];
if ($gpc === '1') {
echo "<dialog id='dialog' open=''>
<h4>Consentez-vous au traitement de vos données ?</h4>
<p>Nous utilisons des cookies pour le bon fonctionnent du site : </p>
<button>Accepter les cookies</button>
<form method='dialog'>
<button>Refuser</button>
</form>
<button aria-haspopup='dialog' aria-controls='cookieschoice' onclick=`'this.closest(\"dialog\").close()';document.getElementById('cookieschoice').showModal();\">Choisir</button>
</dialog>
<dialog id='cookieschoice'>
<h4>Choisissez</h4>
<p>Nous utilisons des cookies pour le bon fonctionnent du site : </p>
<form>
<input type='checkbox' role='switch' id='fonctionnel'>
<label for='fonctionnel'> Fonctionnel</label>
<button>Enregistrer</button>
</form>
<button aria-haspopup='dialog' onclick='this.closest(\"dialog\").close()'>Fermer</button>
</dialog>
";
} else {
echo "Global Privacy Control n'est pas activé.";
}
} else {
echo "L'en-tête Global Privacy Control n'est pas présent.";
}
session_start();
if (isset($_SESSION["loggedin"]) && isset($_SESSION["role"])) {
echo '
<div class="editpagecontent">
<div class="editpage">
<a href="./"><img src="admin/admin-assets/edit-l.svg" alt>Modifier</a>
<div style="width: 2px; height: 100%; background-color: #ddd;"></div>
<a href="./"><img src="admin/admin-assets/dashboard-l.svg" alt="Tableau de bord"></a>
</div>
</div>
<style>
.editpagecontent {
display: flex;
position:fixed;
bottom:16px;
max-width: 1200px;
width: 100%;
margin: 0 auto;
}
.editpage {
display: flex;
padding: 8px 16px;
border-radius: 99px;
gap: 8px;
background-color: #ccc;
margin-left: auto;
}
.editpage a {
text-decoration: none;
border-bottom: 0;
display: flex;
align-items: center;
}
.editpage img {
height: 24px;
width: 24px;
}
</style>
';
}
?>
</body>
</html>