organizee-front/src/app/pages/page-support/page-support.component.html
2022-03-13 20:28:00 +01:00

38 lines
No EOL
1.3 KiB
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div>
<app-header></app-header>
<app-side-bar></app-side-bar>
</div>
<app-side-bar [backgroundColor]="'rgb(184, 202, 235)'"></app-side-bar>
<div>
<app-alert *ngIf="isShow" [alert]="alert" (eventClose)="onClickCloseAlert()"></app-alert>
<h2>Nous contacter</h2>
<form (ngSubmit)="onSubmit()" [formGroup]="contactForm">
<label for="name">Nom :</label>
<div>
<input type="text" id="floatingInputlastName" [(ngModel)]="expName" placeholder="{{expName}}" name="lastName" formControlName="lastNameFc" />
</div>
<label for="mail">E-mail:</label>
<div>
<input type="email" id="floatingInputemail" placeholder="{{expMail}}" [(ngModel)]="expMail" name="email" formControlName="emailFc" />
</div>
<label for="msg">Message :</label>
<textarea formControlName="messageFc" id="msg" name="message" placeholder="Formulez votre demande ici"
required></textarea>
<div class="button">
<button type="submit" [disabled]="contactForm.invalid" class="btn btn-primary">Envoyez votre
message</button>
<button type="button" class="btn btn-danger" (click)="onDeleteMail()">Effacer</button>
</div>
</form>
</div>
<app-footer></app-footer>