Commit 7737ac649dfcc95eea4c1e2f11ea4498127ac415
1 parent
ed805a98
Suppression RPI + capteur
Showing
1 changed file
with
28 additions
and
5 deletions
Show diff stats
site/network.php
... | ... | @@ -2,12 +2,35 @@ |
2 | 2 | session_start(); |
3 | 3 | include("head.php"); |
4 | 4 | include("header.php"); |
5 | +require_once("accesBase.php"); | |
6 | +$capteurs = getSensors(); | |
5 | 7 | ?> |
6 | 8 | <div class="row"> |
9 | + <div class="col-6 col-md-6 offset-md-3 offset-3"> | |
7 | 10 | <br/> |
8 | - <br/> | |
9 | - <img src="img/computer.jpg" alt="computer" style="width: 100%; height: auto; margin-top: 60px;"/> | |
10 | -</div> | |
11 | -<div class="row"> | |
12 | - <img src="img/empty.jpg" alt="computer" style="width: 100%; height: auto; margin-top: 60px;"/> | |
11 | + <h1 style="margin-bottom:20px; margin-top:60px; border-bottom:1px solid #CCC; padding-bottom:20px;"><i class="fas fa-network-wired"></i> Le réseau</h1> | |
12 | + <table class="table table-striped table-bordered table-hover table-dark"> | |
13 | + <tbody> | |
14 | + <tr> | |
15 | + <td><label for="names">Nom du capteur : </label></td> | |
16 | + <td></td> | |
17 | + </tr> | |
18 | + | |
19 | + <tr> | |
20 | + <td><label for="start">Date de début :</label></td> | |
21 | + <td></td> | |
22 | + </tr> | |
23 | + | |
24 | + <tr> | |
25 | + <td><label for="end">Date de fin :</label></td> | |
26 | + <td></td> | |
27 | + </tr> | |
28 | + | |
29 | + <tr> | |
30 | + <td><label for"nombre">Nombre de points :</label></td> | |
31 | + <td></td> | |
32 | + </tr> | |
33 | + </tbody> | |
34 | + </table> | |
35 | + </div> | |
13 | 36 | </div> | ... | ... |