page.html
2.12 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html>
<H1> BANC TEST DE STATION METEOROLOGIQUE</H1>
<H2> Commande des paramètres </H2>
<p> Vent </p>
<FORM>
<SELECT name="nom" size="1">
<OPTION>null
<OPTION>faible
<OPTION>moyen
<OPTION>fort
</SELECT>
</FORM>
</html>
<script language="javascript" src="p1.js"> </script>
<p> Lumière </p>
<FORM>
<SELECT name="nom" size="1">
<OPTION>Noir
<OPTION>Sombre
<OPTION>Lumineux
<OPTION>Très lumineux
</SELECT>
</FORM>
</html>
<form method="post" action="traitement.php">
<p>
<label for="temp_donnée">Température: </label>
<input type="text" name="temp_donnée" id="temp_donnée" placeholder="Ex : 20" size="10" maxlength="4" />
</p>
</form>
<form method="post" action="traitement.php">
<p>
<label for="humidité_donnée">Humidité: </label>
<input type="text" name="humidité_donnée" id="humidité_donnée" placeholder="Ex : 15" size="10" maxlength="4" />
</p>
</form>
</html>
<H2> Données lues sur la Station testée </H2>
</html>
<form method="post" action="traitement.php">
<p>
<label for="modèle station météo">Référence: </label>
<input type="text" name="code" id="code" size="10" maxlength="4" />
</p>
</form>
<script language="javascript" src="p1.js"> </script>
<p> Lumiére </p>
<FORM>
<SELECT name="nom" size="1">
<OPTION>Fonctionne
<OPTION>Ne fonctionne pas
</SELECT>
</FORM>
</html>
<script language="javascript" src="p1.js"> </script>
<p> Vent </p>
<FORM>
<SELECT name="nom" size="1">
<OPTION>Fonctionne
<OPTION>Ne fonctionne pas
</SELECT>
</FORM>
</html>
</html>
<script language="javascript" src="p1.js"> </script>
<p> Humidité </p>
<FORM>
<SELECT name="nom" size="1">
<OPTION>Fonctionne
<OPTION>Ne fonctionne pas
</SELECT>
</FORM>
</html>
<script language="javascript" src="p1.js"> </script>
<p> Température </p>
<FORM>
<SELECT name="nom" size="1">
<OPTION>Fonctionne
<OPTION>Ne fonctionne pas
</SELECT>
</FORM>
<input type="button" value="Validez" onclick="alert("Validez")">
</html>
</html>