2022-05-04 13:45:28 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<title>Fluence JS</title>
|
2022-05-11 11:38:31 +03:00
|
|
|
<style>
|
|
|
|
#main {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
margin: 100px 300px;
|
|
|
|
gap: 10px;
|
|
|
|
}
|
|
|
|
</style>
|
2022-05-04 13:45:28 +03:00
|
|
|
</head>
|
2022-05-11 11:38:31 +03:00
|
|
|
<body>
|
|
|
|
<div id="main">
|
|
|
|
<button id="connect">connect</button>
|
|
|
|
<button id="once">run once</button>
|
|
|
|
<button id="pings">run pings</button>
|
|
|
|
<button id="stop_pings">stop pings</button>
|
|
|
|
<button id="disconnect">disconnect</button>
|
|
|
|
</div>
|
|
|
|
</body>
|
2022-05-04 13:45:28 +03:00
|
|
|
</html>
|