|
|
|
@ -1,6 +1,9 @@
|
|
|
|
|
<div class="description">
|
|
|
|
|
|
|
|
|
|
<router-outlet></router-outlet>
|
|
|
|
|
<h1 i18n>
|
|
|
|
|
Pour commencer
|
|
|
|
|
</h1>
|
|
|
|
|
<span
|
|
|
|
|
class="pre-selector"
|
|
|
|
|
i18n
|
|
|
|
@ -10,6 +13,7 @@
|
|
|
|
|
<select
|
|
|
|
|
id="selector"
|
|
|
|
|
name="selector"
|
|
|
|
|
autofocus="autofocus"
|
|
|
|
|
[(ngModel)]="config.pollType"
|
|
|
|
|
>
|
|
|
|
|
<option value="dates">
|
|
|
|
@ -21,7 +25,6 @@
|
|
|
|
|
</select>
|
|
|
|
|
<span class="post-selector">
|
|
|
|
|
</span>
|
|
|
|
|
<hr>
|
|
|
|
|
<div>
|
|
|
|
|
|
|
|
|
|
<label
|
|
|
|
@ -35,10 +38,23 @@
|
|
|
|
|
type="text"
|
|
|
|
|
id="poll_title"
|
|
|
|
|
name="poll_title"
|
|
|
|
|
placeholder="titre"
|
|
|
|
|
[(ngModel)]="config.title"
|
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<label for="my_name">
|
|
|
|
|
Je peux aussi préciser mon nom si je le souhaite :
|
|
|
|
|
</label>
|
|
|
|
|
<input
|
|
|
|
|
type="text"
|
|
|
|
|
name="my_name"
|
|
|
|
|
id="my_name"
|
|
|
|
|
placeholder="mon nom"
|
|
|
|
|
[(ngModel)]="config.myName"
|
|
|
|
|
>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
|
|
|
|
|
<label
|
|
|
|
@ -52,6 +68,7 @@
|
|
|
|
|
id="poll_description"
|
|
|
|
|
name="poll_description"
|
|
|
|
|
[(ngModel)]="config.description"
|
|
|
|
|
placeholder="description"
|
|
|
|
|
cols="50"
|
|
|
|
|
lines="5"
|
|
|
|
|
></textarea>
|
|
|
|
@ -60,10 +77,10 @@
|
|
|
|
|
|
|
|
|
|
<a
|
|
|
|
|
[routerLink]="'/step/answers'"
|
|
|
|
|
class="btn striked"
|
|
|
|
|
i18n="start_form"
|
|
|
|
|
class="btn btn-block"
|
|
|
|
|
i18n
|
|
|
|
|
>
|
|
|
|
|
C'est parti
|
|
|
|
|
Continuer
|
|
|
|
|
</a>
|
|
|
|
|
<hr>
|
|
|
|
|
</div>
|
|
|
|
|