8baa236d81
* Moved `nym-sphinx-wasm` into `wasm` folder and renamed its examples * A proposal for some structural cleanup * desktop client: beginning of a Rust example for chunking. * Simplifying desktop client readme * Tarting up webassembly README * A more visual webassembly client example * clients/webassembly: grouping a few things into named functions for clarity * clients/webassembly: put URLs at top of file, prepping for drop-down action * mixnode + provider run: changed startup error messages a bit * clients/webassembly: scrolling from the bottom in the demo
30 lines
837 B
HTML
30 lines
837 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Nym WebAssembly Demo</title>
|
|
</head>
|
|
|
|
<body>
|
|
<p>
|
|
<label for="fname">Recipient address: </label><input type="text" id="recipient" name="recipient"
|
|
value="HNka47Wji3LF23wGtU5oAFwoaM3tfbp2fBLGBPLcwUZ5">
|
|
</p>
|
|
<label for="fname">Text to send: </label><input type="text" id="sendtext" name="sendtext" value="Hello mixnet!">
|
|
<button id="send-button">Send</button>
|
|
|
|
<p>Send messages to the mixnet using the "send" button.</p>
|
|
<p><span style='color: blue;'>Sent</span> messages show in blue, <span style='color: green;'>received</span>
|
|
messages show in green.</p>
|
|
|
|
<hr>
|
|
<p>
|
|
<span id="output"></div>
|
|
</p>
|
|
<script src="./bootstrap.js"></script>
|
|
|
|
</body>
|
|
|
|
</html> |