feat(auth): add recover and reset password functionality

This commit is contained in:
csimonis 2025-05-15 12:31:08 +02:00 committed by Phan Huy Tran
commit 2305e83647
6 changed files with 322 additions and 0 deletions

View file

@ -63,4 +63,9 @@ export class LoginComponent {
},
});
}
switchToForgotPassword() {
this.closeDialog.emit();
this.router.navigate(['/recover-password']);
}
}