Skip to content
Snippets Groups Projects

New signup

1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -18,20 +18,27 @@
<input matInput type="text" formControlName="lastName" placeholder="Nom" required>
</mat-form-field>
<!--Date of birth-->
<mat-form-field class="full-width">
<input matInput type="date" formControlName="dateOfBirth" placeholder="Date de naissance" required>
</mat-form-field>
<!-- Email -->
<mat-form-field class="full-width">
<input matInput type="email" formControlName="email" placeholder="Adresse email" required>
<input matInput type="email" formControlName="email" placeholder="Adresse email" onkeyup="this.value = this.value.toLowerCase();" required>
<mat-hint>
Elle te servira d'identifiant de connexion.
</mat-hint>
</mat-form-field>
<mat-form-field class="full-width">
<input matInput type="tel" formControlName="phoneNumber" placeholder="Numéro de téléphone" required>
<!-- <mat-form-field class="full-width">
<input matInput type="tel" minlength="10" maxlength="10" formControlName="phoneNumber" placeholder="Numéro de téléphone" required>
<mat-hint>
Il nous permettra de te contacter en cas de nécessité.
</mat-hint>
</mat-form-field>
</mat-form-field> -->
<p>
@@ -54,7 +61,7 @@
<div class="text-center">
<button mat-raised-button color="primary" [disabled]="!formGroup.valid || loading">
M'inscrire
Suivant
<app-load-spinner *ngIf="loading" [block]="false"></app-load-spinner>
</button>
</div>
Loading