aboutsummaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
Diffstat (limited to 'www')
-rw-r--r--www/index.html1
-rw-r--r--www/index.js10
2 files changed, 6 insertions, 5 deletions
diff --git a/www/index.html b/www/index.html
index 8007121..76d8c1c 100644
--- a/www/index.html
+++ b/www/index.html
@@ -12,7 +12,6 @@
<h1 class="title">
Password Generator
</h1>
- <label>This is a work in progress</label>
<h2 class="subtitle" id="password">
password
</h2>
diff --git a/www/index.js b/www/index.js
index c9baaf8..e25ec3a 100644
--- a/www/index.js
+++ b/www/index.js
@@ -1,7 +1,9 @@
import * as wasm from "genpass";
-function generatePassword() {
- document.getElementById("password").innerHTML = wasm.generate();
-}
+const LEN = 32;
-document.getElementById("generate").onclick = generatePassword
+document.getElementById("password").innerHTML = wasm.generate(LEN);
+
+document.getElementById("generate").onclick = (function () {
+ document.getElementById("password").innerHTML = wasm.generate(LEN);
+});