mirror of
https://github.com/falk-werner/webfuse
synced 2024-10-27 20:34:10 +00:00
17 lines
370 B
HTML
17 lines
370 B
HTML
|
<!doctype html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Webfuse Example</title>
|
||
|
<script type="module" src="js/startup.js"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Webfuse</h1>
|
||
|
<p>
|
||
|
<label for="url">Url:</label>
|
||
|
<input type="text" id="url" value="ws://localhost:8081"/>
|
||
|
</p>
|
||
|
<p>
|
||
|
<input type="button" id="connect" value="Connect"/>
|
||
|
</p>
|
||
|
</body>
|
||
|
</html>
|