realisation de la page register
This commit is contained in:
parent
89e174a28d
commit
d55287531b
17 changed files with 495 additions and 192 deletions
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -11,8 +11,4 @@ export class PopupConfirmationComponent
|
|||
constructor( public dialogRef: MatDialogRef<PopupConfirmationComponent>,
|
||||
@Inject(MAT_DIALOG_DATA) public data) {}
|
||||
|
||||
onClick(): void
|
||||
{
|
||||
this.dialogRef.close();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue