mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
added flex-line
This commit is contained in:
parent
48e77024d5
commit
cb6979926d
@ -4,82 +4,44 @@
|
||||
<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>
|
||||
<div class="flex-line">
|
||||
<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>
|
||||
</div>
|
||||
|
||||
<label
|
||||
for="poll_title"
|
||||
class="title-label"
|
||||
i18n
|
||||
>
|
||||
<div class="flex-line">
|
||||
<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"
|
||||
>
|
||||
<input type="text" id="poll_title" name="poll_title" [(ngModel)]="config.title">
|
||||
|
||||
</div>
|
||||
|
||||
<div>
|
||||
|
||||
<label
|
||||
for="poll_description"
|
||||
class="title-label"
|
||||
i18n
|
||||
>
|
||||
<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>
|
||||
<textarea id="poll_description" name="poll_description" [(ngModel)]="config.description" cols="50"
|
||||
lines="5"></textarea>
|
||||
|
||||
</div>
|
||||
<div>
|
||||
<div class="flex-line">
|
||||
<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"
|
||||
>
|
||||
<input type="text" name="my_name" id="my_name" [(ngModel)]="config.myName">
|
||||
</div>
|
||||
<a
|
||||
[routerLink]="'/step/answers'"
|
||||
class="btn btn-block"
|
||||
i18n
|
||||
>
|
||||
<a [routerLink]="'/step/answers'" class="btn btn-block" i18n>
|
||||
Continuer
|
||||
</a>
|
||||
<hr>
|
||||
</div>
|
||||
</div>
|
11
src/assets/scss/molecules/_flex-line.scss
Normal file
11
src/assets/scss/molecules/_flex-line.scss
Normal file
@ -0,0 +1,11 @@
|
||||
@charset "UTF-8";
|
||||
|
||||
.flex-line {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
& > input,
|
||||
& > select {
|
||||
flex-grow: 1;
|
||||
}
|
||||
}
|
@ -15,3 +15,4 @@
|
||||
|
||||
@import "assets/scss/molecules/logo";
|
||||
@import "assets/scss/molecules/debug";
|
||||
@import "assets/scss/molecules/flex-line";
|
||||
|
Loading…
Reference in New Issue
Block a user