mirror of
https://github.com/fluencelabs/fluence-js.git
synced 2025-03-15 07:20:49 +00:00
25 lines
645 B
HTML
25 lines
645 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Fluence JS</title>
|
|
<style>
|
|
#main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin: 100px 300px;
|
|
gap: 10px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<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>
|
|
</html>
|