mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
42 lines
931 B
HTML
42 lines
931 B
HTML
<div class="answers">
|
|
<h1 i18n>
|
|
Choisir les propositions
|
|
</h1>
|
|
|
|
<p class="subtitle" i18n>
|
|
Vous pouvez utiliser la syntaxe markdown
|
|
</p>
|
|
|
|
<ol>
|
|
<li #answers *ngFor="let answer of config.answers; index as i;trackBy trackFunction"
|
|
class="answer-item">
|
|
<input
|
|
type="text"
|
|
class="answer"
|
|
[(ngModel)]="answer.text"
|
|
placeholder="réponse"
|
|
>
|
|
<button (click)="config.answers.splice(i,1)">X</button>
|
|
</li>
|
|
</ol>
|
|
|
|
<button
|
|
class="btn_border"
|
|
(click)="addAnswer()"
|
|
i18n
|
|
>
|
|
Ajouter une proposition
|
|
</button>
|
|
<br>
|
|
<button
|
|
[routerLink]="'/step/resume'"
|
|
class="btn_background btn_white_text"
|
|
i18n
|
|
>
|
|
Voyons ce que ça donne
|
|
</button>
|
|
<a class="prev" i18n>
|
|
Retour
|
|
</a>
|
|
</div>
|