From d8591575b1497fae1d9b72a9362cc9e5d2bf3acd Mon Sep 17 00:00:00 2001 From: Eoghan Conlon Date: Sun, 27 Aug 2023 16:38:32 +0100 Subject: [PATCH] Passwords not matching status added Signed-off-by: Eoghan Conlon --- src/recovery/reset.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/recovery/reset.html b/src/recovery/reset.html index f6a3d8f..ddd718f 100644 --- a/src/recovery/reset.html +++ b/src/recovery/reset.html @@ -32,7 +32,7 @@ if(pass === formData.get("confirm")){ alert("Passwords match"); } else { - alert("Passwords don't match"); + document.getElementById('formStatus').innerHTML = "Failure: Passwords don't match"; } }