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';
|
||||
title = '';
|
||||
description = '';
|
||||
myName = '';
|
||||
visibility = 'link_only';
|
||||
// date specific poll
|
||||
allowSeveralHours = false;
|
||||
|
@ -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>
|
||||
|
@ -10,7 +10,7 @@
|
||||
liens… un sondage quoi !
|
||||
</p>
|
||||
<a
|
||||
[routerLink]="'home'"
|
||||
[routerLink]="'/home'"
|
||||
class="btn striked"
|
||||
>
|
||||
C'est parti
|
||||
@ -38,11 +38,11 @@
|
||||
autofocus="autofocus"
|
||||
placeholder="mon e-mail"
|
||||
/>
|
||||
<button
|
||||
<input
|
||||
type="submit"
|
||||
class="btn btn-block"
|
||||
i18n
|
||||
>
|
||||
Retrouver mes sondages
|
||||
</button>
|
||||
value="Retrouver mes sondages"
|
||||
/>
|
||||
</form>
|
||||
</section>
|
||||
|
Loading…
Reference in New Issue
Block a user