fix(reset password): change reset-password link to remove .html (causes issues)
This commit is contained in:
parent
7e16dc23c2
commit
3cd54a2b5f
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue