Skip to content

Commit

Permalink
Fixed bug where new user page submit button was not working
Browse files Browse the repository at this point in the history
  • Loading branch information
AnthonyDeSantiago committed Sep 24, 2023
1 parent e21444b commit 2192d92
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions public/sprout.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@ function showError(input, message) {
small.innerText = message
}

document.getElementById("password_form").addEventListener("submit", async function (e) {
console.log("button was pressed")
});
// document.getElementById("password_form").addEventListener("submit", async function (e) {
// console.log("button was pressed")
// });

document.getElementById("new_user_form").addEventListener("submit", async function (e) {
e.preventDefault();
Expand Down

0 comments on commit 2192d92

Please sign in to comment.