funky-framadate-front/src/app/features/administration/form/steps/step-six/step-six.component.html

26 lines
812 B
HTML
Raw Normal View History

<app-stepper [step_current]="6" [step_max]="pollService.step_max"></app-stepper>
2021-12-02 15:52:08 +01:00
<div class="step min-height">
<div class="min-height">
2021-11-18 10:49:55 +01:00
<form action="#" [formGroup]="pollService.form">
2021-11-30 18:27:50 +01:00
<h2>
2021-11-18 10:49:55 +01:00
Dites à vos participants qui vous êtes !
</h2>
<label for="name">
Votre nom (obligatoire)
</label>
<input class="input" type="text" id="name" formControlName="creatorPseudo" />
<label for="email">
Votre adresse e-mail
<span class="required-label" *ngIf="environment.creation_email_is_required">
(obligatoire)
</span>
2021-11-18 10:49:55 +01:00
</label>
<input class="input" type="text" id="email" formControlName="creatorEmail" />
</form>
</div>
</div>
<app-nav-steps
[next_step_number]="pollService.step_current + 1"
[previous_step_number]="pollService.step_current - 1"
></app-nav-steps>