2019-08-09 15:14:23 +02:00
|
|
|
<div class="description">
|
2019-08-10 11:06:13 +02:00
|
|
|
|
2019-08-11 17:10:09 +02:00
|
|
|
<router-outlet></router-outlet>
|
|
|
|
<span
|
|
|
|
class="pre-selector"
|
|
|
|
i18n
|
|
|
|
>
|
2019-08-10 16:20:59 +02:00
|
|
|
Je veux créer un sondage
|
|
|
|
</span>
|
2019-08-11 17:10:09 +02:00
|
|
|
<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-11 17:10:09 +02:00
|
|
|
<hr>
|
|
|
|
<div>
|
2019-08-09 17:43:23 +02:00
|
|
|
|
2019-08-11 17:10:09 +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-11 17:10:09 +02:00
|
|
|
</div>
|
|
|
|
<div>
|
2019-08-09 17:43:23 +02:00
|
|
|
|
2019-08-11 17:10:09 +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-11 17:10:09 +02:00
|
|
|
</div>
|
2019-08-10 16:20:59 +02:00
|
|
|
|
2019-08-11 17:10:09 +02:00
|
|
|
<a
|
|
|
|
[routerLink]="'/step/answers'"
|
|
|
|
class="btn striked"
|
|
|
|
i18n="start_form"
|
|
|
|
>
|
|
|
|
C'est parti
|
|
|
|
</a>
|
|
|
|
<hr>
|
2019-08-09 15:14:23 +02:00
|
|
|
</div>
|