97a944a33e
* Updated wasm code to work with new gateway and updated the example * cargo fmt * Fixed test by ensuring destination is present at a gateway * Updated hardcoded default port * ibid. to correct value
30 lines
793 B
HTML
30 lines
793 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="">
|
|
</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> |