mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
84 lines
1.6 KiB
HTML
84 lines
1.6 KiB
HTML
<div class="description">
|
|
|
|
<router-outlet></router-outlet>
|
|
<h1 i18n>
|
|
Pour commencer
|
|
</h1>
|
|
<span
|
|
class="pre-selector"
|
|
i18n
|
|
>
|
|
Je veux créer un sondage
|
|
</span>
|
|
<select
|
|
id="selector"
|
|
name="selector"
|
|
autofocus="autofocus"
|
|
[(ngModel)]="config.pollType"
|
|
>
|
|
<option value="dates">
|
|
spécial dates
|
|
</option>
|
|
<option value="classic">
|
|
classique
|
|
</option>
|
|
</select>
|
|
<span class="post-selector">
|
|
</span>
|
|
<div>
|
|
|
|
<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"
|
|
>
|
|
|
|
</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"
|
|
[(ngModel)]="config.myName"
|
|
>
|
|
</div>
|
|
<div>
|
|
|
|
<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>
|
|
|
|
</div>
|
|
|
|
<a
|
|
[routerLink]="'/step/answers'"
|
|
class="btn btn-block"
|
|
i18n
|
|
>
|
|
Continuer
|
|
</a>
|
|
<hr>
|
|
</div>
|