mirror of
https://github.com/moparisthebest/wallabag
synced 2024-11-23 09:32:15 -05:00
Merge pull request #907 from jsit/login
Some small design tweaks to the login page: Moving 'Stay signed in'...
This commit is contained in:
commit
f23fd0ee5e
@ -2,7 +2,7 @@
|
||||
<form method="get" action="index.php">
|
||||
<a href="javascript: void(null);" id="search-form-close" class="popup-close">×</a>
|
||||
<input type="hidden" name="view" value="search"></input>
|
||||
<label>{% trans "Search" %}</label>: <input required placeholder="{% trans "Enter your search here" %}" type="text" name="search" id="searchfield" />
|
||||
<label>{% trans "Search" %}:</label><input required placeholder="{% trans "Enter your search here" %}" type="text" name="search" id="searchfield" />
|
||||
<input id="submit-search" type="submit" value="{% trans "Search" %} !"></input>
|
||||
</form>
|
||||
</div>
|
||||
|
@ -92,7 +92,6 @@ form fieldset {
|
||||
form input[type="text"], select, form input[type="password"], form input[type="url"], form input[type="email"] {
|
||||
border: 1px solid #999;
|
||||
padding: 0.5em 1em;
|
||||
margin-left: 5px;
|
||||
min-width: 12em;
|
||||
color: #666;
|
||||
}
|
||||
@ -105,10 +104,6 @@ form input[type="text"], select, form input[type="password"], form input[type="u
|
||||
}
|
||||
}
|
||||
|
||||
fieldset label {
|
||||
min-width: 12.5em;
|
||||
}
|
||||
|
||||
.inline .row {
|
||||
display: inline-block;
|
||||
margin-right: 0.5em;
|
||||
@ -120,10 +115,14 @@ fieldset label {
|
||||
|
||||
fieldset label {
|
||||
display: inline-block;
|
||||
margin-right: 0.5em;
|
||||
min-width: 12.5em;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
label {
|
||||
margin-right: 0.5em;
|
||||
}
|
||||
|
||||
form .row {
|
||||
margin-bottom: 0.5em;
|
||||
}
|
||||
|
@ -9,17 +9,17 @@
|
||||
{% if constant('MODE_DEMO') == 1 %}<p>{% trans "you are in demo mode, some features may be disabled." %}</p>{% endif %}
|
||||
<div class="row">
|
||||
<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 class="row">
|
||||
<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 class="row">
|
||||
<label class="col w150p" for="longlastingsession">{% trans "Stay signed in" %}</label>
|
||||
|
||||
<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>
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user