Spaces:
Sleeping
Sleeping
DmitrMakeev
commited on
Commit
•
d7d25f5
1
Parent(s):
c574214
Update online.html
Browse files- online.html +37 -2
online.html
CHANGED
@@ -20,8 +20,9 @@
|
|
20 |
Bootstrap
|
21 |
</a>
|
22 |
<form class="form-inline">
|
23 |
-
<button class="btn btn-outline-success" type="button"
|
24 |
-
<button class="btn btn-outline-success" type="button"
|
|
|
25 |
</form>
|
26 |
</nav>
|
27 |
|
@@ -174,6 +175,40 @@
|
|
174 |
|
175 |
|
176 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
177 |
<script>
|
178 |
function updateValues(data) {
|
179 |
document.getElementById("dey").textContent = data.dey;
|
|
|
20 |
Bootstrap
|
21 |
</a>
|
22 |
<form class="form-inline">
|
23 |
+
<button id="st_onl" class="btn btn-outline-success" type="button" >Данные</button>
|
24 |
+
<button id="st_set" class="btn btn-outline-success" type="button" >Настройки</button>
|
25 |
+
<button id="st_graf" class="btn btn-outline-success" type="button" >Графики</button>
|
26 |
</form>
|
27 |
</nav>
|
28 |
|
|
|
175 |
|
176 |
|
177 |
</div>
|
178 |
+
|
179 |
+
|
180 |
+
<script>
|
181 |
+
document.getElementById("st_onl").addEventListener("click", function() {
|
182 |
+
window.location.href = "https://vk-ai-system-flask-inference-api3.hf.space/online";
|
183 |
+
});
|
184 |
+
</script>
|
185 |
+
|
186 |
+
|
187 |
+
<script>
|
188 |
+
document.getElementById("st_set").addEventListener("click", function() {
|
189 |
+
window.location.href = "https://vk-ai-system-flask-inference-api3.hf.space/settings";
|
190 |
+
});
|
191 |
+
</script>
|
192 |
+
|
193 |
+
|
194 |
+
<script>
|
195 |
+
document.getElementById("st_graf").addEventListener("click", function() {
|
196 |
+
window.location.href = "https://vk-ai-system-flask-inference-api3.hf.space/settings";
|
197 |
+
});
|
198 |
+
</script>
|
199 |
+
|
200 |
+
|
201 |
+
|
202 |
+
|
203 |
+
|
204 |
+
|
205 |
+
|
206 |
+
|
207 |
+
|
208 |
+
|
209 |
+
|
210 |
+
|
211 |
+
|
212 |
<script>
|
213 |
function updateValues(data) {
|
214 |
document.getElementById("dey").textContent = data.dey;
|