This commit is contained in:
Slendy 2022-01-31 18:59:07 -06:00
commit fc41243d36

View file

@ -14,7 +14,7 @@
const passwordInput = document.getElementById("password"); const passwordInput = document.getElementById("password");
const passwordSubmit = document.getElementById("password-submit"); const passwordSubmit = document.getElementById("password-submit");
passwordSubmit.value = sha256(passwordInput); passwordSubmit.value = sha256(passwordInput.value);
return true; return true;
} }