Spaces:
Sleeping
Sleeping
Update settings.html
Browse files- settings.html +42 -0
settings.html
CHANGED
|
@@ -24,6 +24,24 @@ input[type="number"] {
|
|
| 24 |
</head>
|
| 25 |
<body>
|
| 26 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 27 |
<div class="container mt-3">
|
| 28 |
<div class="container text-center"> <br>
|
| 29 |
<h1>Настройки системы</h1>
|
|
@@ -245,8 +263,32 @@ input[type="number"] {
|
|
| 245 |
</div>
|
| 246 |
|
| 247 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 248 |
|
| 249 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 250 |
<script>
|
| 251 |
// Функция, которая будет выполняться при загрузке страницы
|
| 252 |
window.onload = function() {
|
|
|
|
| 24 |
</head>
|
| 25 |
<body>
|
| 26 |
|
| 27 |
+
|
| 28 |
+
<nav class="navbar navbar-light bg-light">
|
| 29 |
+
<a class="navbar-brand" href="#">
|
| 30 |
+
<img src="/assets/brand/bootstrap-solid.svg" width="30" height="30" class="d-inline-block align-top" alt="">
|
| 31 |
+
Bootstrap
|
| 32 |
+
</a>
|
| 33 |
+
<form class="form-inline">
|
| 34 |
+
<button id="st_onl" class="btn btn-outline-success" type="button" >Данные</button>
|
| 35 |
+
<button id="st_set" class="btn btn-outline-success" type="button" >Настройки</button>
|
| 36 |
+
<button id="st_graf" class="btn btn-outline-success" type="button" >Графики</button>
|
| 37 |
+
</form>
|
| 38 |
+
</nav>
|
| 39 |
+
|
| 40 |
+
|
| 41 |
+
|
| 42 |
+
|
| 43 |
+
|
| 44 |
+
|
| 45 |
<div class="container mt-3">
|
| 46 |
<div class="container text-center"> <br>
|
| 47 |
<h1>Настройки системы</h1>
|
|
|
|
| 263 |
</div>
|
| 264 |
|
| 265 |
|
| 266 |
+
<script>
|
| 267 |
+
document.getElementById("st_onl").addEventListener("click", function() {
|
| 268 |
+
window.location.href = "https://vk-ai-system-flask-inference-api3.hf.space/online";
|
| 269 |
+
});
|
| 270 |
+
</script>
|
| 271 |
|
| 272 |
|
| 273 |
+
<script>
|
| 274 |
+
document.getElementById("st_set").addEventListener("click", function() {
|
| 275 |
+
window.location.href = "https://vk-ai-system-flask-inference-api3.hf.space/settings";
|
| 276 |
+
});
|
| 277 |
+
</script>
|
| 278 |
+
|
| 279 |
+
|
| 280 |
+
<script>
|
| 281 |
+
document.getElementById("st_graf").addEventListener("click", function() {
|
| 282 |
+
window.location.href = "https://vk-ai-system-flask-inference-api3.hf.space/settings";
|
| 283 |
+
});
|
| 284 |
+
</script>
|
| 285 |
+
|
| 286 |
+
|
| 287 |
+
|
| 288 |
+
|
| 289 |
+
|
| 290 |
+
|
| 291 |
+
|
| 292 |
<script>
|
| 293 |
// Функция, которая будет выполняться при загрузке страницы
|
| 294 |
window.onload = function() {
|