diff options
author | kiko%async.com.br <> | 2004-01-17 07:46:30 +0100 |
---|---|---|
committer | kiko%async.com.br <> | 2004-01-17 07:46:30 +0100 |
commit | 09763eb1eb5d0f9b5284edb08ce76b216b358cc5 (patch) | |
tree | 5db921e1d9c736ac8252f656b2e279c1dd396f2e /template/en/default/account/auth | |
parent | 3aeef0535633570b09014f6858c688c6c8e43f22 (diff) | |
download | bugzilla-09763eb1eb5d0f9b5284edb08ce76b216b358cc5.tar.gz bugzilla-09763eb1eb5d0f9b5284edb08ce76b216b358cc5.tar.xz |
Fix for bug 90468: Bugzilla does not log out automatically when closing
the session. Patch by toms@myrealbox.com (Toms Baugis), with minor
cleanups by me. r=kiko, a=myk.
Diffstat (limited to 'template/en/default/account/auth')
-rw-r--r-- | template/en/default/account/auth/login.html.tmpl | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/template/en/default/account/auth/login.html.tmpl b/template/en/default/account/auth/login.html.tmpl index a2587300e..9145470a1 100644 --- a/template/en/default/account/auth/login.html.tmpl +++ b/template/en/default/account/auth/login.html.tmpl @@ -17,6 +17,7 @@ # Rights Reserved. # # Contributor(s): Gervase Markham <gerv@gerv.net> + # Toms Baugis <toms@myrealbox.com> #%] [%# INTERFACE: @@ -53,6 +54,20 @@ <td> <input type="password" size="35" name="Bugzilla_password"> </td> + </tr> + + [% IF Param('rememberlogin') == 'defaulton' || + Param('rememberlogin') == 'defaultoff' %] + <tr> + <td> </td> + <td> + <input type="checkbox" name="Bugzilla_remember" value="on" + [% "checked" IF Param('rememberlogin') == "defaulton" %]> + Remember my Login + </td> + </tr> + [% END %] + [% IF Param('loginnetmask') < 32 %] <tr> <td align="right"> |