funky-framadate-front/src/app/pages/answers/answers.component.html

30 lines
599 B
HTML
Raw Normal View History

2019-08-10 18:14:00 +02:00
<div class="answers">
<h1 i18n>
Choisir les propositions
</h1>
2019-08-10 18:14:00 +02:00
<p class="subtitle" i18n>
2019-09-06 18:46:12 +02:00
Vous pouvez utiliser la syntaxe markdown
2019-08-10 18:14:00 +02:00
</p>
2019-08-10 18:14:00 +02:00
<ol>
<li #answers *ngFor="let answer of config.answers; index as i;trackBy trackFunction"
class="answer-item">
2019-08-10 18:14:00 +02:00
<input
type="text"
class="answer"
2019-08-10 18:14:00 +02:00
[(ngModel)]="answer.text"
2019-09-06 18:46:12 +02:00
>
2019-08-10 18:14:00 +02:00
</li>
</ol>
2019-08-10 18:14:00 +02:00
<button
2019-09-06 18:46:12 +02:00
class="btn_border"
(click)="addAnswer()">
2019-09-06 18:46:12 +02:00
Ajouter une proposition
2019-08-10 18:14:00 +02:00
</button>
2019-09-06 18:46:12 +02:00
<br>
<button [routerLink]="'/step/resume'" class="btn_background btn_white_text">Valider</button>
2019-09-09 11:20:19 +02:00
<a class="prev">Retour</a>
2019-08-10 18:14:00 +02:00
</div>