-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 884 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Quick Start</title>
</head>
<body>
<script>var exports = {};</script>
<script type="module" src="./dist/bundle.js"></script>
<form id="form">
<label for="password">
Password
</label>
<input type="text" name="password" id="password" />
<label for="password">
Salt
</label>
<input type="text" name="salt" id="salt" />
<label for="encryptedMnemonic">
encryptedMnemonic
</label>
<input type="text" name="encryptedMnemonic" id="encryptedMnemonic" />
<button type="submit">Submit form</button>
</form>
<div id="status"></div>
<div id="results"></div>
</body>
</html>