Commit fccb88d3b51d1c7f9f80f912f980cfbdaf29d6f5
1 parent
d7e50981
MAJ
Showing
4 changed files
with
8 additions
and
8 deletions
Show diff stats
site/capteurs.php
... | ... | @@ -9,12 +9,12 @@ $sensors = getSensors(); |
9 | 9 | <form action="reception.php" method="post" enctype="multipart/form-data"> |
10 | 10 | <table class="table table-striped table-bordered"> |
11 | 11 | <tbody> |
12 | - <tr> | |
12 | + <th class="thead-dark"> | |
13 | 13 | <td>Sélection</td> |
14 | 14 | <td>Nom</td> |
15 | 15 | <td>Raspberry</td> |
16 | 16 | <td>Type</td> |
17 | - </tr> | |
17 | + </th> | |
18 | 18 | |
19 | 19 | <?php |
20 | 20 | $count = 0; | ... | ... |
site/inscrire.php
... | ... | @@ -25,13 +25,13 @@ $membres = members(); |
25 | 25 | <h1 style="margin-bottom:20px; border-bottom:1px solid #CCC; padding-bottom:20px;"><i class="fas fa-database"></i> Membres</h1> |
26 | 26 | <table class="table table-striped table-bordered"> |
27 | 27 | <tbody> |
28 | - <tr> | |
28 | + <th class="thead-dark"> | |
29 | 29 | <td>Nom</td> |
30 | 30 | <td>Prénom</td> |
31 | 31 | <td>Identifiant</td> |
32 | 32 | <td>Groupe</td> |
33 | 33 | <td>Action</td> |
34 | - </tr> | |
34 | + </th> | |
35 | 35 | |
36 | 36 | <?php |
37 | 37 | foreach($membres as $membre){ | ... | ... |
site/recherche.php
... | ... | @@ -21,14 +21,14 @@ session_start(); |
21 | 21 | <h1 style="margin-bottom:20px; margin-top:60px; border-bottom:1px solid #CCC; padding-bottom:20px;"><i class="fas fa-history"></i> Historique</h1> |
22 | 22 | <table class="table table-striped table-bordered"> |
23 | 23 | <tbody> |
24 | - <tr> | |
24 | + <th class="thead-dark"> | |
25 | 25 | <td>Nom</td> |
26 | 26 | <td>Raspberry</td> |
27 | 27 | <td>Type</td> |
28 | 28 | <td>Valeur</td> |
29 | 29 | <td>Unité</td> |
30 | 30 | <td>Date</td> |
31 | - </tr> | |
31 | + </th> | |
32 | 32 | |
33 | 33 | <div id="sensors"> |
34 | 34 | <?php | ... | ... |
site/values.php
... | ... | @@ -4,14 +4,14 @@ |
4 | 4 | <h1 style="margin-bottom:20px; margin-top:60px; border-bottom:1px solid #CCC; padding-bottom:20px;"><i class="fas fa-database"></i> Valeurs des capteurs</h1> |
5 | 5 | <table class="table table-striped table-bordered"> |
6 | 6 | <tbody> |
7 | - <tr> | |
7 | + <th class="thead-dark"> | |
8 | 8 | <td>Nom</td> |
9 | 9 | <td>Raspberry</td> |
10 | 10 | <td>Type</td> |
11 | 11 | <td>Valeur</td> |
12 | 12 | <td>Unité</td> |
13 | 13 | <td>Arrêt</td> |
14 | - </tr> | |
14 | + </th> | |
15 | 15 | |
16 | 16 | <?php |
17 | 17 | $sensors = getSensors(); | ... | ... |