realisation de la page register

This commit is contained in:
MiharyR 2021-11-12 19:42:39 +01:00
parent 89e174a28d
commit d55287531b
17 changed files with 495 additions and 192 deletions

View file

@ -1,4 +1,11 @@
<p> Votre inscription a bien été effectué. </p>
<p *ngIf="data.roleName === 'user'">
Votre inscription a bien été effectuée.
</p>
<p *ngIf="data.roleName === 'advertiser'">
Votre inscription est en cours de validation.
</p>
<div style="text-align: right">
<button mat-button mat-dialog-close> Continuer </button>
</div>

View file

@ -11,8 +11,4 @@ export class PopupConfirmationComponent
constructor( public dialogRef: MatDialogRef<PopupConfirmationComponent>,
@Inject(MAT_DIALOG_DATA) public data) {}
onClick(): void
{
this.dialogRef.close();
}
}