mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
⚡ add my name input in first form
This commit is contained in:
parent
16e8ab4ec5
commit
8eecb506c3
@ -16,6 +16,7 @@ export class PollConfig {
|
|||||||
pollType = 'classic';
|
pollType = 'classic';
|
||||||
title = '';
|
title = '';
|
||||||
description = '';
|
description = '';
|
||||||
|
myName = '';
|
||||||
visibility = 'link_only';
|
visibility = 'link_only';
|
||||||
// date specific poll
|
// date specific poll
|
||||||
allowSeveralHours = false;
|
allowSeveralHours = false;
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
<div class="description">
|
<div class="description">
|
||||||
|
|
||||||
<router-outlet></router-outlet>
|
<router-outlet></router-outlet>
|
||||||
|
<h1 i18n>
|
||||||
|
Pour commencer
|
||||||
|
</h1>
|
||||||
<span
|
<span
|
||||||
class="pre-selector"
|
class="pre-selector"
|
||||||
i18n
|
i18n
|
||||||
@ -10,6 +13,7 @@
|
|||||||
<select
|
<select
|
||||||
id="selector"
|
id="selector"
|
||||||
name="selector"
|
name="selector"
|
||||||
|
autofocus="autofocus"
|
||||||
[(ngModel)]="config.pollType"
|
[(ngModel)]="config.pollType"
|
||||||
>
|
>
|
||||||
<option value="dates">
|
<option value="dates">
|
||||||
@ -21,7 +25,6 @@
|
|||||||
</select>
|
</select>
|
||||||
<span class="post-selector">
|
<span class="post-selector">
|
||||||
</span>
|
</span>
|
||||||
<hr>
|
|
||||||
<div>
|
<div>
|
||||||
|
|
||||||
<label
|
<label
|
||||||
@ -35,10 +38,23 @@
|
|||||||
type="text"
|
type="text"
|
||||||
id="poll_title"
|
id="poll_title"
|
||||||
name="poll_title"
|
name="poll_title"
|
||||||
|
placeholder="titre"
|
||||||
[(ngModel)]="config.title"
|
[(ngModel)]="config.title"
|
||||||
>
|
>
|
||||||
|
|
||||||
</div>
|
</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>
|
<div>
|
||||||
|
|
||||||
<label
|
<label
|
||||||
@ -52,6 +68,7 @@
|
|||||||
id="poll_description"
|
id="poll_description"
|
||||||
name="poll_description"
|
name="poll_description"
|
||||||
[(ngModel)]="config.description"
|
[(ngModel)]="config.description"
|
||||||
|
placeholder="description"
|
||||||
cols="50"
|
cols="50"
|
||||||
lines="5"
|
lines="5"
|
||||||
></textarea>
|
></textarea>
|
||||||
@ -60,10 +77,10 @@
|
|||||||
|
|
||||||
<a
|
<a
|
||||||
[routerLink]="'/step/answers'"
|
[routerLink]="'/step/answers'"
|
||||||
class="btn striked"
|
class="btn btn-block"
|
||||||
i18n="start_form"
|
i18n
|
||||||
>
|
>
|
||||||
C'est parti
|
Continuer
|
||||||
</a>
|
</a>
|
||||||
<hr>
|
<hr>
|
||||||
</div>
|
</div>
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
liens… un sondage quoi !
|
liens… un sondage quoi !
|
||||||
</p>
|
</p>
|
||||||
<a
|
<a
|
||||||
[routerLink]="'home'"
|
[routerLink]="'/home'"
|
||||||
class="btn striked"
|
class="btn striked"
|
||||||
>
|
>
|
||||||
C'est parti
|
C'est parti
|
||||||
@ -38,11 +38,11 @@
|
|||||||
autofocus="autofocus"
|
autofocus="autofocus"
|
||||||
placeholder="mon e-mail"
|
placeholder="mon e-mail"
|
||||||
/>
|
/>
|
||||||
<button
|
<input
|
||||||
|
type="submit"
|
||||||
class="btn btn-block"
|
class="btn btn-block"
|
||||||
i18n
|
i18n
|
||||||
>
|
value="Retrouver mes sondages"
|
||||||
Retrouver mes sondages
|
/>
|
||||||
</button>
|
|
||||||
</form>
|
</form>
|
||||||
</section>
|
</section>
|
||||||
|
Loading…
Reference in New Issue
Block a user