2023-02-04 23:11:02 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Webfuse Example</title>
|
|
|
|
<script type="module" src="js/startup.js"></script>
|
2023-02-05 10:37:19 +00:00
|
|
|
<link rel="stylesheet" href="style.css" />
|
2023-02-04 23:11:02 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2023-02-05 10:37:19 +00:00
|
|
|
<h1>Webfuse Example</h1>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
This example provides a single file "README.md", which
|
|
|
|
contents can be altered below.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<h2>Connection</h2>
|
2023-02-04 23:11:02 +00:00
|
|
|
<p>
|
|
|
|
<label for="url">Url:</label>
|
|
|
|
<input type="text" id="url" value="ws://localhost:8081"/>
|
|
|
|
</p>
|
2023-02-05 10:37:19 +00:00
|
|
|
<p>
|
|
|
|
<label for="token">Token:</label>
|
|
|
|
<input type="text" id="token" value="" />
|
|
|
|
</p>
|
2023-02-04 23:11:02 +00:00
|
|
|
<p>
|
|
|
|
<input type="button" id="connect" value="Connect"/>
|
2023-02-05 10:37:19 +00:00
|
|
|
<span id="state">disconnected</span>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<h2>README.md</h2>
|
|
|
|
<p>
|
|
|
|
<textarea id="contents"># Webfuse
|
|
|
|
This is a sample text.
|
|
|
|
</textarea>
|
2023-02-04 23:11:02 +00:00
|
|
|
</p>
|
|
|
|
</body>
|
|
|
|
</html>
|