DmitrMakeev commited on
Commit
1c50324
1 Parent(s): 0f6fab0

Update settings.html

Browse files
Files changed (1) hide show
  1. settings.html +5 -2
settings.html CHANGED
@@ -18,7 +18,10 @@
18
  <body>
19
  <h1>Настройки системы</h1>
20
  <p>День : <span id="dey"></span></p>
21
-
 
 
 
22
 
23
 
24
 
@@ -27,7 +30,7 @@
27
  <script>
28
  function updateValues(data) {
29
  document.getElementById("dey").textContent = data.dey;
30
-
31
 
32
  }
33
 
 
18
  <body>
19
  <h1>Настройки системы</h1>
20
  <p>День : <span id="dey"></span></p>
21
+ <form>
22
+ <label for="name">Введите</label>
23
+ <input type="text" id="name" placeholder="Иван Иванов">
24
+ </form>
25
 
26
 
27
 
 
30
  <script>
31
  function updateValues(data) {
32
  document.getElementById("dey").textContent = data.dey;
33
+ document.getElementById("name").textContent = data.dey;
34
 
35
  }
36