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

16 lines
426 B
HTML
Raw Normal View History

2019-08-10 17:41:01 +02:00
<h1 i18n>
Choisir les propositions
</h1>
<p class="subtitle" i18n>
vous pouvez utiliser la syntaxe markdown
</p>
<ol
*ngFor="let answer of config.answers"
class="anwser">
<li>
<input type="text" [(ngModel)]="answer" (keydown)="addWhenEnterKey($event)">
<button (click)="config.removeAnswer(answer)">X</button>
</li>
</ol>
<a [routerLink]="'/step/recapitulatif'" class="btn btn-block">Voyons ce que ça donne</a>