1c58232e
root
MAJ site en lien ...
|
1
2
3
|
<?php
$raspberrys = getRaspberrys();
?>
|
19ae2416
jnduwamu
MAJ du site
|
4
|
<div class="row">
|
f060da64
grouille
Test
|
5
|
<div class="col-6 col-md-6 offset-md-3 offset-3">
|
19ae2416
jnduwamu
MAJ du site
|
6
|
<br/>
|
39579493
root
MAJ Site
|
7
|
<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>
|
19ae2416
jnduwamu
MAJ du site
|
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<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>
|
1c58232e
root
MAJ site en lien ...
|
23
24
25
26
27
28
29
30
31
32
33
|
<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>
|
19ae2416
jnduwamu
MAJ du site
|
34
35
36
|
</tr>
<tr>
|
19ae2416
jnduwamu
MAJ du site
|
37
38
39
|
<td><label for="unite">Unite de mesure : </label></td>
<td><input type="text" id="unite" name="unite" /></td>
</tr>
|
36ef1f60
Guillaume
MAJ site
|
40
41
42
43
44
45
46
47
48
49
50
|
<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>
|
19ae2416
jnduwamu
MAJ du site
|
51
52
|
</tbody>
</table>
|
3bff9633
Guillaume
MAJ site
|
53
54
|
<input type="submit" class="btn btn-dark btn-lg btn-block" style="margin-top:20px; margin-bottom:20px;" value="Ajouter le capteur"/>
<br/>
|
19ae2416
jnduwamu
MAJ du site
|
55
56
57
|
</form>
</div>
</div>
|