Fix auth page not remembering users.
This commit is contained in:
parent
e5ed1c7f6a
commit
a1a81ac980
2 changed files with 11 additions and 4 deletions
|
@ -20,10 +20,17 @@
|
|||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
* SOFTWARE.
|
||||
*/
|
||||
.login-box, .register-box {
|
||||
width: 40%;
|
||||
margin: 7% auto
|
||||
}
|
||||
|
||||
.login-box, .register-box {
|
||||
width: 460px;
|
||||
}
|
||||
@media (max-width:768px) {
|
||||
.login-box, .register-box {
|
||||
width: 90%;
|
||||
margin-top: 20px
|
||||
}
|
||||
}
|
||||
|
||||
.weight-100 {
|
||||
font-weight: 100;
|
||||
|
|
|
@ -57,7 +57,7 @@
|
|||
<div class="row">
|
||||
<div class="col-xs-8">
|
||||
<div class="form-group has-feedback">
|
||||
<input type="checkbox" name="remember_me" id="remember_me" /> <label for="remember_me" class="weight-300">@lang('auth.remember_me')</label>
|
||||
<input type="checkbox" name="remember" id="remember" /> <label for="remember" class="weight-300">@lang('auth.remember_me')</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xs-4">
|
||||
|
|
Loading…
Reference in a new issue