50 lines
1.7 KiB
PHP
50 lines
1.7 KiB
PHP
<?php
|
|
$this_file = basename($_SERVER["SCRIPT_FILENAME"]);
|
|
?>
|
|
|
|
<!DOCTYPE HTML>
|
|
<html>
|
|
<HEAD>
|
|
<meta charset="UTF-8">
|
|
<title>Statistiques</title>
|
|
<link rel="SHORTCUT ICON" HREF="ressources/logo.svg">
|
|
<style>
|
|
img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
</style>
|
|
</HEAD>
|
|
|
|
<BODY>
|
|
<CENTER>
|
|
<?php include 'includes/titre.php'; ?>
|
|
<i>Cette page vous donne les éléments nécessaires pour pouvoir entrer en contact avec GNOUS de manière sécurisée.</i><br><br>
|
|
<?php include 'includes/menu.php'; ?>
|
|
</CENTER>
|
|
<?php include 'includes/mtime.php'; ?>
|
|
|
|
<h2 id=mm>Mattermost</h2>
|
|
<h3>Dernières 24h</h3>
|
|
<a href="/ressources/stats/mm24h.png" target="_blank"><img src="ressources/stats/mm24h.png"></a><br>
|
|
<h3>Dernière semaine</h3>
|
|
<a href="/ressources/stats/mm7d.png" target="_blank"><img src="ressources/stats/mm7d.png"></a><br>
|
|
<h3>Dernier mois</h3>
|
|
<a href="/ressources/stats/mm1M.png" target="_blank"><img src="ressources/stats/mm1M.png"></a><br>
|
|
<h3>Dernière année</h3>
|
|
<a href="/ressources/stats/mm1y.png" target="_blank"><img src="ressources/stats/mm1y.png"></a><br>
|
|
|
|
<h2 id=nc>Nextcloud</h2>
|
|
<h3>Dernières 24h</h3>
|
|
<a href="/ressources/stats/nc24h.png" target="_blank"><img src="ressources/stats/nc24h.png"></a><br>
|
|
<h3>Dernière semaine</h3>
|
|
<a href="/ressources/stats/nc7d.png" target="_blank"><img src="ressources/stats/nc7d.png"></a><br>
|
|
<h3>Dernier mois</h3>
|
|
<a href="/ressources/stats/nc1M.png" target="_blank"><img src="ressources/stats/nc1M.png"></a><br>
|
|
<h3>Dernière année</h3>
|
|
<a href="/ressources/stats/nc1y.png" target="_blank"><img src="ressources/stats/nc1y.png"></a><br>
|
|
|
|
<?php include 'includes/footer.php'; ?>
|
|
</BODY>
|
|
</HTML>
|