DmitrMakeev commited on
Commit
d634f61
·
verified ·
1 Parent(s): 93f05ed

Update nutri_call.html

Browse files
Files changed (1) hide show
  1. nutri_call.html +17 -1
nutri_call.html CHANGED
@@ -317,8 +317,24 @@
317
  <fieldset class="calculation-box">
318
  <legend>Расчёт удобрений</legend>
319
  <div class="calculation-container">
320
-
321
  <button id="calculate-btn">Рассчитать</button>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
322
  <div class="calculation-label">Литры:</div>
323
  <input type="number" id="liters-input" value="100" min="1" step="1">
324
 
 
317
  <fieldset class="calculation-box">
318
  <legend>Расчёт удобрений</legend>
319
  <div class="calculation-container">
 
320
  <button id="calculate-btn">Рассчитать</button>
321
+
322
+ <!-- Веса компенсации -->
323
+ <div class="compensation-weights">
324
+ <div class="weight-input-group">
325
+ <label for="weight-k2so4">K₂SO₄:</label>
326
+ <input type="number" id="weight-k2so4" value="0.23" step="0.01" min="-1" max="1">
327
+ </div>
328
+ <div class="weight-input-group">
329
+ <label for="weight-mgso4">MgSO₄:</label>
330
+ <input type="number" id="weight-mgso4" value="-0.10" step="0.01" min="-1" max="1">
331
+ </div>
332
+ <div class="weight-input-group">
333
+ <label for="weight-kh2po4">KH₂PO₄:</label>
334
+ <input type="number" id="weight-kh2po4" value="0.14" step="0.01" min="-1" max="1">
335
+ </div>
336
+ </div>
337
+
338
  <div class="calculation-label">Литры:</div>
339
  <input type="number" id="liters-input" value="100" min="1" step="1">
340