fix(reset password): change reset-password link to remove .html (causes issues)

This commit is contained in:
Samidy 2026-03-22 07:30:22 +03:00
parent 7e16dc23c2
commit 3cd54a2b5f

View file

@ -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);