Compare commits

..

2 Commits

Author SHA1 Message Date
carteronm 96dfc905f9 Merge remote-tracking branch 'origin/develop' into develop 2026-06-10 22:36:41 +02:00
carteronm baee754ee8 Register terminé 2026-06-10 22:36:35 +02:00
2 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -82,7 +82,7 @@ export class AuthService {
})
);
await this.login(username, password);
await this.router.navigate(['/login']);
}
logout(): void {
@@ -39,6 +39,9 @@ export class RegisterFormComponent {
}
async submitForm() {
console.log('form valid:', this.registerForm.valid);
console.log('form errors:', this.registerForm.errors);
console.log('form values:', this.registerForm.value);
if (this.registerForm.valid) {
this.isLoading = true;
try {