From 3cd54a2b5f25560e8cc3b5076dac15960f0457ef Mon Sep 17 00:00:00 2001 From: Samidy Date: Sun, 22 Mar 2026 07:30:22 +0300 Subject: [PATCH] fix(reset password): change reset-password link to remove .html (causes issues) --- js/accounts/auth.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/accounts/auth.js b/js/accounts/auth.js index a5df058..5032935 100644 --- a/js/accounts/auth.js +++ b/js/accounts/auth.js @@ -89,7 +89,7 @@ export class AuthManager { async sendPasswordReset(email) { try { - await auth.createRecovery(email, window.location.origin + '/reset-password.html'); + await auth.createRecovery(email, window.location.origin + '/reset-password'); alert(`Password reset email sent to ${email}`); } catch (error) { console.error('Password reset failed:', error);