addSensor.php
2.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php
$raspberrys = getRaspberrys();
?>
<div class="row">
<div class="col-4 col-md-4 offset-md-4 offset-4">
<br/>
<h1 style="margin-bottom:20px; margin-top:60px; border-bottom:1px solid #CCC; padding-bottom:20px;"><i class="far fa-plus-square"></i> Ajout d'un capteur</h1>
<form action="add.php" method="post">
<table class="table table-striped table-bordered">
<tbody>
<tr>
<td><label for="nom">Nom du capteur : </label></td>
<td><input type="text" id="nom" name="nom" /></td>
</tr>
<tr>
<td><label for="type">Type de capteur : </label></td>
<td><input type="text" id="type" name="type" /></td>
</tr>
<tr>
<td><label for="raspberry">Raspberry : </label></td>
<td>
<div class="form-group my-1 mr-sm-2">
<select class="custom-select my-1 mr-sm-2" id="raspberry" name="raspberry">
<?php
foreach($raspberrys as $raspberry)
{ ?>
<option><?php echo $raspberry['ip'];?></option>
<?php }?>
</select>
</div>
</td>
</tr>
<tr>
<td><label for="numero">Numéro du capteur : </label></td>
<td><input type="text" id="numero" name="numero" /></td>
</tr>
<tr>
<td><label for="unite">Unite de mesure : </label></td>
<td><input type="text" id="unite" name="unite" /></td>
</tr>
<tr>
<td><label for="version">Version : </lavel></td>
<td>
<select id="version" name="version">
<option value=0 selected>Arduino USB</option>
<option value=1>Arduino SPI</option>
<option value=2>Nucléo USB</option>
</select>
</td>
</tr>
</tbody>
</table>
<input type="submit" class="btn btn-dark btn-lg btn-block" style="margin-top:20px; margin-bottom:20px;" value="Ajouter le capteur"/>
<br/>
</form>
</div>
</div>