This commit is contained in:
cecilesimplon93 2022-01-21 14:55:35 +01:00
parent 8d5cd03d33
commit 080a694838
6 changed files with 12606 additions and 26 deletions

View file

@ -20,7 +20,7 @@ export class AuthService {
signup(membre: Membre): Observable<any> {
console.log(membre);
return this.http.post(`${this.apiUrl}/creation-compte`, membre);
return this.http.post(`${this.apiUrl}/membres/signup`, membre);
}
signin(email: string, password: string): Observable<any> {