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