Login permanent by default

This commit is contained in:
Pierre 2017-06-03 16:51:22 +02:00
parent 882781e216
commit 93969fc9f1
2 changed files with 2 additions and 2 deletions

View File

@ -83,7 +83,7 @@ ComunicWeb.components.menuBar.notAuthenticated = {
};
//Try to login user
ComunicWeb.user.userLogin.loginUser(emailInput.value, passwordInput.value, false, afterTryLogin);
ComunicWeb.user.userLogin.loginUser(emailInput.value, passwordInput.value, true, afterTryLogin);
//Block form
return false;

View File

@ -24,7 +24,7 @@
<div class="col-xs-8">
<div class="checkbox icheck">
<label>
<input type="checkbox" id="rememberLogin" /> Remember Me
<input type="checkbox" id="rememberLogin" checked /> Remember Me
</label>
</div>
</div>