29 lines
664 B
HTML
29 lines
664 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Welcome file</title>
|
|
<link rel="stylesheet" href="https://stackedit.io/style.css" />
|
|
</head>
|
|
|
|
<body class="stackedit">
|
|
<div class="stackedit__html"><h1 id="значение-ножки-сейчас--">Значение ножки сейчас - <span id="wertyui"></span></h1>
|
|
</div>
|
|
<script>
|
|
setInterval(()=>
|
|
fetch('/pin')
|
|
.then((response) => {
|
|
return response.json();
|
|
})
|
|
|
|
.then((data) => {
|
|
document.getElementById("wertyui").innerHTML = data;
|
|
})
|
|
, 2000);
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|