Files
2026-06-03 16:19:21 +02:00

59 lines
2.1 KiB
PHP
Raw Permalink 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 : <span id="temperature"></span></p>
<p>Humidité : <span id="humidity"></span></p>
<p>Pression : <span id="pressure"></span></p>
<p>Luminosité : <span id="luminosity"></span></p>
</div>
<div class="widget securite">
<span class="icone">🚨</span>
<strong>Sécurité</strong>
<p>Événement : <span id="event_type"></span></p>
<p>Lieu : <span id="location"></span></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>
<script src="/smart-house---final-/dashboard.js"></script>
<?php include 'include/footer.php'; ?>