-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupdateThreshold.html
More file actions
37 lines (34 loc) · 1.13 KB
/
Copy pathupdateThreshold.html
File metadata and controls
37 lines (34 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Modifier les seuils de température et d'humidité</title>
<link rel="stylesheet" href="../src/style/sensorForm.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="https://unpkg.com/notie/dist/notie.min.css">
<style>
/* override styles here */
.notie-container {
box-shadow: none;
}
</style>
</head>
<body>
<h1>Modifier les seuils de température et d'humidité</h1>
<form id="form">
<div class="form-group">
<label for="temperature">Seuil de Température:</label>
<input type="number" id="temperature" name="temperature" placeholder="30">
</div>
<div class="form-group">
<label for="humidite">Seuil d'Humidité:</label>
<input type="number" id="humidity" name="humidity" placeholder="80">
</div>
<div class="form-group">
<button id="validate" type="submit">Modifier</button>
</div>
</form>
<script src="https://unpkg.com/notie"></script>
<script type="module" src="../src/script/updateSensor.js"></script>
</body>
</html>