mirror of
https://github.com/wallabag/wallabag.git
synced 2025-07-12 16:58:37 +00:00
Some small design tweaks to the login page: Moving 'Stay signed in' label and removing left margin on input boxes
This commit is contained in:
parent
4fae3b0a85
commit
f60c9b00ab
2 changed files with 4 additions and 5 deletions
|
@ -92,7 +92,6 @@ form fieldset {
|
||||||
form input[type="text"], select, form input[type="password"], form input[type="url"], form input[type="email"] {
|
form input[type="text"], select, form input[type="password"], form input[type="url"], form input[type="email"] {
|
||||||
border: 1px solid #999;
|
border: 1px solid #999;
|
||||||
padding: 0.5em 1em;
|
padding: 0.5em 1em;
|
||||||
margin-left: 5px;
|
|
||||||
min-width: 12em;
|
min-width: 12em;
|
||||||
color: #666;
|
color: #666;
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,17 +9,17 @@
|
||||||
{% if constant('MODE_DEMO') == 1 %}<p>{% trans "you are in demo mode, some features may be disabled." %}</p>{% endif %}
|
{% if constant('MODE_DEMO') == 1 %}<p>{% trans "you are in demo mode, some features may be disabled." %}</p>{% endif %}
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<label class="col w150p" for="login">{% trans "Username" %}</label>
|
<label class="col w150p" for="login">{% trans "Username" %}</label>
|
||||||
<input class="col" type="text" id="login" name="login" placeholder="Login" tabindex="1" autofocus {% if constant('MODE_DEMO') == 1 %}value="poche"{% endif %} />
|
<input class="col" type="text" id="login" name="login" placeholder="{% trans "Username" %}" tabindex="1" autofocus {% if constant('MODE_DEMO') == 1 %}value="poche"{% endif %} />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<label class="col w150p" for="password">{% trans "Password" %}</label>
|
<label class="col w150p" for="password">{% trans "Password" %}</label>
|
||||||
<input class="col" type="password" id="password" name="password" placeholder="Password" tabindex="2" {% if constant('MODE_DEMO') == 1 %}value="poche"{% endif %} />
|
<input class="col" type="password" id="password" name="password" placeholder="{% trans "Password" %}" tabindex="2" {% if constant('MODE_DEMO') == 1 %}value="poche"{% endif %} />
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<label class="col w150p" for="longlastingsession">{% trans "Stay signed in" %}</label>
|
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<input type="checkbox" id="longlastingsession" name="longlastingsession" tabindex="3">
|
<input type="checkbox" id="longlastingsession" name="longlastingsession" tabindex="3" /> <label for="longlastingsession">{% trans "Stay signed in" %}</label><br />
|
||||||
<small class="inbl">{% trans "(Do not check on public computers)" %}</small>
|
<small class="inbl">{% trans "(Do not check on public computers)" %}</small>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue