network.php
893 Bytes
<?php
session_start();
include("head.php");
include("header.php");
require_once("accesBase.php");
$capteurs = getSensors();
?>
<div class="row">
<div class="col-6 col-md-6 offset-md-3 offset-3">
<br/>
<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>
<table class="table table-striped table-bordered table-hover table-dark">
<tbody>
<tr>
<td><img src="img/pi.png" alt="Raspberry" style="width:auto; height:50px;"></td>
<td>172.26.145.114</td>
</tr>
<tr>
<td><label for="start">Date de début :</label></td>
<td></td>
</tr>
<tr>
<td><label for="end">Date de fin :</label></td>
<td></td>
</tr>
<tr>
<td><label for"nombre">Nombre de points :</label></td>
<td></td>
</tr>
</tbody>
</table>
</div>
</div>