Blame view

site/network.php 941 Bytes
a3b3b0f7   grouille   Test
1
2
3
4
  <?php
  session_start();
  include("head.php");
  include("header.php");
7737ac64   grouille   Suppression RPI +...
5
6
  require_once("accesBase.php");
  $capteurs = getSensors();
a3b3b0f7   grouille   Test
7
  ?>
1d132344   grouille   Test
8
  <div class="row">
7737ac64   grouille   Suppression RPI +...
9
  	<div class="col-6 col-md-6 offset-md-3 offset-3">
373ca6d8   grouille   Test
10
  	<br/>
7737ac64   grouille   Suppression RPI +...
11
12
13
14
  		<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>
ebfed159   grouille   Affichage du réseau
15
  					<td><img src="img/pi.png" alt="Raspberry" style="width:auto; height:50px;"></td>
1824f0b5   grouille   Affichage du réseau
16
  					<td valign="middle"><p style="font-size: 14px;">172.26.145.114</p></td>
7737ac64   grouille   Suppression RPI +...
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
  				</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>
1d132344   grouille   Test
36
  </div>