forked from dontsovcmc/waterius
-
Notifications
You must be signed in to change notification settings - Fork 0
/
input_settings.html
64 lines (64 loc) · 3.48 KB
/
input_settings.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<title>Ввод данных счётчика: %counter_title%</title>
<link rel="stylesheet" href="/static/style.css">
<script src="/static/common.js"></script>
</head>
<body onload="_init({
back: '/input/%input%/setup.html',
back_wizard: '/input/%input%/setup.html?wizard=true',
next: '/index.html',
next_wizard: '/input/0/setup.html?wizard=true'
}); getImpulses(%input%);">
<form onsubmit="formSubmit(event, this, '/api/save');">
<div class="wrap">
<div class="container f1">
<header>
<a onclick="_goto()">
<div class="icon bf">
<img src="/images/icons.png">
</div>
Назад</a>
<div class="icon logo">
<img src="/images/icons.png">
</div>
<div class="fr">шаг 5/9</div>
</header>
<main>
<h2>%counter_title%</h2>
<p class="text">Счётчик определился Ватериусом, теперь введите серийный номер и показания счётчика</p>
<p class="form-error hd"></p>
<input id="input" name="input" type="hidden" value="%input%">
<div class="f-row">
<label for="serial">Серийный номер (опционально)</label>
<input id="serial" name="serial" placeholder="10-12345" value="%serial%">
<p class="error hd" id="serial-error">Введите серийный номер</p>
</div>
<div class="f-row">
<label for="channel_start">Показания счётчика</label>
<input pattern="^\s*[\d]+([,\.][\d]+)?\s*$" id="channel_start" name="channel_start" placeholder="356.89" value="%channel_start%">
<p class="error hd" id="channel_start-error">Введите показания счётчика</p>
</div>
<div class="f-row">
<label for="factor">Вес импульса</label>
<select class="slct" id="factor" name="factor" option-value="%factor%">
<option selected="" value="1">1</option>
<option value="10">10</option>
<option value="100">100</option>
</select>
<p>л/имп</p>
<p class="error hd" id="factor-error">Некорректное значение</p>
</div>
<p class="note mt16">(во время настройки вылилось около <span id="delta">1</span>л воды)</p>
</main>
<footer class="btns">
<button class="btn" type="submit">Сохранить</button>
</footer>
</div>
</div>
</form>
</body>
</html>