DmitrMakeev commited on
Commit
674330c
1 Parent(s): 9159ff4

Update settings.html

Browse files
Files changed (1) hide show
  1. settings.html +3 -10
settings.html CHANGED
@@ -17,12 +17,12 @@
17
  </head>
18
  <body>
19
  <h1>Настройки системы</h1>
20
- <p>День : <span id="dey"></span></p>
21
 
22
 
23
  <form>
24
  <label for="pH_set">Введите</label>
25
- <input type="number" id="name" value="" min="1" max="14" step="0.05">
26
  </form>
27
 
28
 
@@ -31,16 +31,9 @@
31
 
32
  <script>
33
 
34
-
35
- function updateValues_s() {
36
-
37
- document.getElementById("name").value = data.dey;
38
-
39
- }
40
- updateValues_s();
41
 
42
  function updateValues(data) {
43
- document.getElementById("dey").textContent = data.dey;
44
 
45
 
46
  }
 
17
  </head>
18
  <body>
19
  <h1>Настройки системы</h1>
20
+ <p>День : <span id="pH"></span></p>
21
 
22
 
23
  <form>
24
  <label for="pH_set">Введите</label>
25
+ <input type="number" id="pH_set" value="5.6" min="1" max="14" step="0.05">
26
  </form>
27
 
28
 
 
31
 
32
  <script>
33
 
 
 
 
 
 
 
 
34
 
35
  function updateValues(data) {
36
+ document.getElementById("pH").textContent = data.dey;
37
 
38
 
39
  }