forked from tykayn/funky-framadate-front
16 lines
426 B
HTML
16 lines
426 B
HTML
|
<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>
|