2019-08-09 15:14:23 +02:00
|
|
|
<div class="description">
|
2019-08-10 16:20:59 +02:00
|
|
|
<fieldset>
|
2019-08-10 11:06:13 +02:00
|
|
|
|
2019-08-10 16:20:59 +02:00
|
|
|
<router-outlet></router-outlet>
|
|
|
|
<span class="pre-selector" i18n>
|
|
|
|
Je veux créer un sondage
|
|
|
|
</span>
|
|
|
|
<select
|
|
|
|
id="selector"
|
|
|
|
name="selector"
|
|
|
|
[(ngModel)]="config.pollType"
|
|
|
|
>
|
|
|
|
<option value="dates">
|
|
|
|
spécial dates
|
|
|
|
</option>
|
|
|
|
<option value="classic">
|
|
|
|
classique
|
|
|
|
</option>
|
|
|
|
</select>
|
|
|
|
<span class="post-selector">
|
2019-08-09 17:43:23 +02:00
|
|
|
</span>
|
2019-08-10 16:20:59 +02:00
|
|
|
<hr>
|
|
|
|
<div>
|
2019-08-09 17:43:23 +02:00
|
|
|
|
2019-08-10 16:20:59 +02:00
|
|
|
<label for="poll_title" class="title-label" i18n>
|
|
|
|
Dont le titre sera
|
|
|
|
</label>
|
|
|
|
<input
|
|
|
|
type="text"
|
|
|
|
id="poll_title"
|
|
|
|
name="poll_title"
|
|
|
|
[(ngModel)]="config.title">
|
2019-08-09 15:14:23 +02:00
|
|
|
|
2019-08-10 16:20:59 +02:00
|
|
|
</div>
|
|
|
|
<div>
|
2019-08-09 17:43:23 +02:00
|
|
|
|
2019-08-10 16:20:59 +02:00
|
|
|
<label for="poll_description" class="title-label" i18n>
|
|
|
|
et la description serait
|
|
|
|
</label>
|
|
|
|
<textarea
|
|
|
|
id="poll_description"
|
|
|
|
name="poll_description"
|
|
|
|
[(ngModel)]="config.description"
|
|
|
|
cols="50" lines="5"></textarea>
|
2019-08-09 17:43:23 +02:00
|
|
|
|
2019-08-10 16:20:59 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<a
|
2019-08-10 18:14:00 +02:00
|
|
|
[routerLink]="'/step/answers'"
|
2019-08-10 16:20:59 +02:00
|
|
|
class="btn striked"
|
|
|
|
i18n="start_form">
|
|
|
|
C'est parti
|
|
|
|
</a>
|
|
|
|
<hr>
|
|
|
|
</fieldset>
|
2019-08-09 15:14:23 +02:00
|
|
|
</div>
|