From 7031971082fae414423abdecc701789f42a87fda Mon Sep 17 00:00:00 2001 From: Hugo SUBTIL <ext.sopra.husubtil@grandlyon.com> Date: Wed, 24 Feb 2021 11:31:02 +0100 Subject: [PATCH] feat: handle sign-in with form --- src/app/header/header.component.html | 2 +- src/app/profile/profile.component.html | 11 ----------- .../components/signup-modal/signup-modal.component.ts | 3 ++- 3 files changed, 3 insertions(+), 13 deletions(-) diff --git a/src/app/header/header.component.html b/src/app/header/header.component.html index 2d4732e1f..ee833e54b 100644 --- a/src/app/header/header.component.html +++ b/src/app/header/header.component.html @@ -46,7 +46,7 @@ </div> <app-signup-modal *ngIf="displaySignUp" [openned]="isPopUpOpen" (closed)="closeSignUpModal($event)"></app-signup-modal> -<app-signin-modal *ngIf="!displaySignUp" [openned]="isPopUpOpen" (closed)="closeSignInModal()"></app-signin-modal> +<!-- <app-signin-modal *ngIf="!displaySignUp" [openned]="isPopUpOpen" (closed)="closeSignInModal()"></app-signin-modal> --> <ng-template #customTitle> <img class="desktop-show logo-grand-lyon" src="/assets/logos/resin.svg" alt /> diff --git a/src/app/profile/profile.component.html b/src/app/profile/profile.component.html index 96e8c9734..d0a27a13b 100644 --- a/src/app/profile/profile.component.html +++ b/src/app/profile/profile.component.html @@ -52,15 +52,4 @@ </div> </div> </div> - - <div> - <div *ngIf="userProfile" fxLayout="column" fxLayoutAlign="center" fxLayoutGap="10px"> - <p fxLayout="column" *ngIf="userProfile.pendingStructuresLink.length > 0"> - Mes structures en attente de validation: - <span *ngFor="let structureId of userProfile.pendingStructuresLink"> - <strong>{{ structureId }}</strong> - </span> - </p> - </div> - </div> </div> diff --git a/src/app/shared/components/signup-modal/signup-modal.component.ts b/src/app/shared/components/signup-modal/signup-modal.component.ts index 2c13f60c1..128646d1b 100644 --- a/src/app/shared/components/signup-modal/signup-modal.component.ts +++ b/src/app/shared/components/signup-modal/signup-modal.component.ts @@ -46,7 +46,8 @@ export class SignUpModalComponent implements OnInit { } public sendSwitchToSignIn(): void { - this.closed.emit(false); + this.closed.emit(true); + this.router.navigate(['/create-structure']); } public swithToResetPassword(): void { -- GitLab