Résolution problème Atom

This commit is contained in:
ycharbi
2021-05-20 18:27:37 +02:00
parent 847a52b87e
commit 2e30703eaa
14 changed files with 309 additions and 24 deletions
+22
View File
@@ -0,0 +1,22 @@
<div>
<table>
<tr>
<td><a href="/pages/gestion/administration.php?page=alias">Alias</a></td>
<td><a href="/pages/gestion/administration.php?page=domaines">Domaines</a></td>
<td><a href="/pages/gestion/administration.php?page=listes_noires">Listes noires</a></td>
<td><a href="/services/utilisateurs/deconnexion.php">Déconnexion</a></a></td>
</tr>
</table>
</div>
<?php
if (isset($_GET['message']) && !empty($_GET['message'])) {
switch ($_GET['message']) {
case "bienvenue":
echo "<p class=\"messages_retour_ko\">Bienvenue ".$_SESSION['nom_utilisateur'].". Vous êtes authentifié en tant qu'".$_SESSION['privilege_utilisateur'].".</p>";
break;
}
}
?>
+10
View File
@@ -0,0 +1,10 @@
<!doctype html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Courtail - Portail des courriels</title>
<link rel="stylesheet" type="text/css" media="screen" href="/fichiers/css/principal.css" />
<link rel="stylesheet" type="text/css" media="screen" href="/fichiers/css/formulaires.css" />
<link rel="icon" href="/fichiers/images/favicon.ico" />
</head>
<body>
+2
View File
@@ -0,0 +1,2 @@
</body>
</html>