mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
87 lines
1.8 KiB
HTML
87 lines
1.8 KiB
HTML
<div class="description">
|
|
|
|
<router-outlet></router-outlet>
|
|
<h1 i18n>
|
|
{{"creation.title"|translate}}
|
|
</h1>
|
|
<span
|
|
class="pre-selector"
|
|
i18n
|
|
>
|
|
{{"creation.want"|translate}}
|
|
</span>
|
|
<select
|
|
id="selector"
|
|
name="selector"
|
|
autofocus="autofocus"
|
|
[(ngModel)]="config.pollType"
|
|
>
|
|
<option value="dates">
|
|
{{"creation.kind.date"|translate}}
|
|
</option>
|
|
<option value="classic">
|
|
{{"creation.kind.classic"|translate}}
|
|
</option>
|
|
</select>
|
|
<span class="post-selector">
|
|
</span>
|
|
<div>
|
|
|
|
<label
|
|
for="poll_title"
|
|
class="title-label"
|
|
i18n
|
|
>
|
|
{{"creation.choose_title"|translate}}
|
|
</label>
|
|
<input
|
|
type="text"
|
|
id="poll_title"
|
|
name="poll_title"
|
|
placeholder="titre"
|
|
[(ngModel)]="config.title"
|
|
>
|
|
|
|
</div>
|
|
<div>
|
|
<label for="my_name">
|
|
{{"creation.name"|translate}} :
|
|
</label>
|
|
<input
|
|
type="text"
|
|
name="my_name"
|
|
id="my_name"
|
|
placeholder="mon nom"
|
|
[(ngModel)]="config.myName"
|
|
>
|
|
</div>
|
|
<div>
|
|
|
|
<label
|
|
for="poll_description"
|
|
class="title-label"
|
|
i18n
|
|
>
|
|
{{"creation.description"|translate}}
|
|
</label>
|
|
<textarea
|
|
id="poll_description"
|
|
name="poll_description"
|
|
[(ngModel)]="config.description"
|
|
placeholder="description"
|
|
cols="50"
|
|
lines="5"
|
|
></textarea>
|
|
|
|
</div>
|
|
|
|
<a
|
|
[routerLink]="'/step/answers'"
|
|
class="btn btn-block"
|
|
i18n
|
|
>
|
|
Continuer
|
|
</a>
|
|
<hr>
|
|
</div>
|