From 9d2f320e2003ac00c497fce76558cb3662b9d71d Mon Sep 17 00:00:00 2001 From: pulipakaa24 Date: Thu, 8 Jan 2026 17:45:53 -0600 Subject: [PATCH] clearer message for token not found --- index.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/index.js b/index.js index 319596e..8362f40 100644 --- a/index.js +++ b/index.js @@ -671,8 +671,8 @@ app.get('/verify-email', async (req, res) => { // Token not found - check if already verified return res.send( generateVerificationPageHTML( - 'Already Verified', - 'This verification link has already been used. Your email is verified and you can log in to the app.', + 'Already Verified or Expired', + 'This verification link has already been used, or the link has expired. Check your app for updated status.', true ) ); @@ -942,8 +942,8 @@ app.get('/verify-email-change', async (req, res) => { // Token doesn't exist - likely already processed return res.send( generateVerificationPageHTML( - 'Already Verified', - 'This verification link has already been used. If your email change was successful, you can log in with your new email address.', + 'Already Verified or Expired', + 'This verification link has already been used, or the link has expired. Check your app for updated status.', true ) );