Files
smart-house---final-/dashboard.php
2026-04-09 13:35:17 +00:00

58 lines
1.9 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
session_start();
require_once 'include/session_check.php';
include 'include/header.php';
?>
<main>
<div class="dashboard-header">
<h2>Dashboard Smart House</h2>
<p>
Bienvenue, <?php echo htmlspecialchars($_SESSION['user']); ?>
(<?php echo htmlspecialchars($_SESSION['role']); ?>)
</p>
<?php if ($_SESSION['role'] === 'Admin'): ?>
<p>Vous êtes Admin, vous pouvez gérer le site.</p>
<?php else: ?>
<p>Vous êtes Utilisateur, votre accès est limité.</p>
<?php endif; ?>
</div>
<div class="dashboard">
<div class="widget climat">
<span class="icone">🌡️</span>
<strong>Climat</strong>
<p>Température : </p>
<p>Humidité : </p>
<p>Pression : </p>
<p>Altitude : </p>
</div>
<div class="widget securite">
<span class="icone">🚨</span>
<strong>Sécurité</strong>
<p>Mouvement : </p>
<p>Distance : </p>
</div>
<div class="widget energie">
<span class="icone">⚡</span>
<strong>Énergie</strong>
<p>Puissance : </p>
<p>Consommation : </p>
</div>
<div class="widget lumiere">
<span class="icone">💡</span>
<strong>Lumière</strong>
<p>Lux : </p>
</div>
<div class="widget graphiques">
<span class="icone">📊</span>
<strong>Graphiques</strong>
<canvas id="graph-temp" width="400" height="150"></canvas>
</div>
<div class="widget alertes">
<span class="icone">⚠️</span>
<strong>Alertes</strong>
<p> Aucune alerte pour l'instant </p>
</div>
</div>
</main>
<?php include 'include/footer.php'; ?>