diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-07-03 20:08:13 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-07-03 20:08:13 -0400 |
commit | a6d434d91f8caf6be0551553f837da4e283e0938 (patch) | |
tree | 01b53917da707240726b21194e13f694770bd3f2 /app | |
parent | b054790200cb6108dd24b9997486cbfac5d0a39d (diff) |
Check the box remember me by default
Diffstat (limited to 'app')
-rw-r--r-- | app/Template/auth/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Template/auth/index.php b/app/Template/auth/index.php index 8801a512..39d007f5 100644 --- a/app/Template/auth/index.php +++ b/app/Template/auth/index.php @@ -14,7 +14,7 @@ <?= $this->form->label(t('Password'), 'password') ?> <?= $this->form->password('password', $values, $errors, array('required')) ?> - <?= $this->form->checkbox('remember_me', t('Remember Me'), 1) ?><br/> + <?= $this->form->checkbox('remember_me', t('Remember Me'), 1, true) ?><br/> <?php if (GOOGLE_AUTH): ?> <?= $this->url->link(t('Login with my Google Account'), 'user', 'google') ?> |