diff --git a/src/PassReset/index.html b/src/PassReset/index.html
index 963cf44..3e29cc7 100644
--- a/src/PassReset/index.html
+++ b/src/PassReset/index.html
@@ -34,11 +34,10 @@
const newPWConfirm = form.newPWConfirm.value;
if (newPW === newPWConfirm){
let obj = { "user": user , "pass": pass , "field": field, "value": newPW }
- alert("form submitted");
+ alert("Form submitted");
} else {
- console.log("New password confirmation doesn't match");
+ alert("New passwords doesn't match");
}
- console.log(user);
}