34 lines
660 B
HTML
34 lines
660 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 Credentials WebAssembly Demo</title>
|
|
<script src="bootstrap.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1> Yet another coconut demo </h1>
|
|
<div>
|
|
<label>mnemonic: </label>
|
|
<input type="text" size = "120" id="mnemonic" value="...">
|
|
|
|
</br>
|
|
</br>
|
|
|
|
<label>amount (in <b>unym</b>): </label>
|
|
<input type="number" size = "60" id="credential-amount" value=0>
|
|
|
|
<button id="coconut-button"> Get Coconut Credential </button>
|
|
</div>
|
|
|
|
<hr>
|
|
<p>
|
|
<span id="output"></span>
|
|
</p>
|
|
|
|
</body>
|
|
|
|
</html> |