diff options
author | mkanat%bugzilla.org <> | 2009-02-12 06:29:08 +0000 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2009-02-12 06:29:08 +0000 |
commit | c09a9a46b4c20a99a046b8ad67dbae76910e1256 (patch) | |
tree | b6853c23f36ec2bc6a2442cbd19d13f0aada68d2 /template/en/default/account/auth | |
parent | 47cf0ef790fc4848ea728ca4e7dc3748459436f8 (diff) | |
download | bugs-c09a9a46b4c20a99a046b8ad67dbae76910e1256.tar bugs-c09a9a46b4c20a99a046b8ad67dbae76910e1256.tar.gz bugs-c09a9a46b4c20a99a046b8ad67dbae76910e1256.tar.bz2 bugs-c09a9a46b4c20a99a046b8ad67dbae76910e1256.tar.xz bugs-c09a9a46b4c20a99a046b8ad67dbae76910e1256.zip |
Bug 476090: Allow users to log-in from toolbar
Patch By Guy Pyrzak <guy.pyrzak@gmail.com> r=mkanat, a=mkanat
Diffstat (limited to 'template/en/default/account/auth')
-rw-r--r-- | template/en/default/account/auth/login-small.html.tmpl | 105 |
1 files changed, 41 insertions, 64 deletions
diff --git a/template/en/default/account/auth/login-small.html.tmpl b/template/en/default/account/auth/login-small.html.tmpl index 19aaca11d..56f281b24 100644 --- a/template/en/default/account/auth/login-small.html.tmpl +++ b/template/en/default/account/auth/login-small.html.tmpl @@ -1,4 +1,4 @@ -[%# The contents of this file are subject to the Mozilla Public +[%# The contents of this file are subject to the Mozilla Public # License Version 1.1 (the "License"); you may not use this file # except in compliance with the License. You may obtain a copy of # the License at http://www.mozilla.org/MPL/ @@ -23,68 +23,45 @@ [%# Use the current script name. If an empty name is returned, # then we are accessing the home page. %] -[% script_name = cgi.url(Relative => 1) %] -[% IF !script_name %] - [% script_name = "index.cgi" %] +[% target = cgi.url("-relative" => 1, "-query" => 1) %] +[% IF !target %] + [% target = "index.cgi" %] [% END %] -[%# If SSL is in use, use 'sslbase', else use 'urlbase'. %] -[% IF Param("sslbase") != "" && Param("ssl") != "never" %] - [% script_name = Param("sslbase") _ script_name %] -[% ELSE %] - [% script_name = Param("urlbase") _ script_name %] -[% END %] - -<form name="login" action="[% script_name FILTER html %]" method="POST"> - <table id="login-small"> - <tr> - <th align="right"><label for="Bugzilla_login">Login:</label></th> - <td><input size="20" id="Bugzilla_login" name="Bugzilla_login"> - [% Param('emailsuffix') FILTER html %]</td> - </tr> - <tr> - <th align="right"><label for="Bugzilla_password">Password:</label></th> - <td> - <input type="password" size="20" id="Bugzilla_password" name="Bugzilla_password"> - </td> - </tr> - - [% IF Param('rememberlogin') == 'defaulton' || - Param('rememberlogin') == 'defaultoff' %] - <tr> - <th> </th> - <td> - <input type="checkbox" id="Bugzilla_remember" name="Bugzilla_remember" value="on" - [%+ "checked" IF Param('rememberlogin') == "defaulton" %]> - <label for="Bugzilla_remember">Remember my Login</label> - </td> - </tr> - [% END %] - - [% IF Param('loginnetmask') < 32 %] - <tr> - <th> </th> - <td> - <input type="checkbox" id="Bugzilla_restrictlogin" name="Bugzilla_restrictlogin" - checked="checked"> - <label for="Bugzilla_restrictlogin">Restrict this session to this IP address - (using this option improves security)</label> - </td> - </tr> - [% END %] - - <tr> - <td><input type="submit" name="GoAheadAndLogIn" value="Login" - id="log_in"></td> - - [%# For now, password change requests only apply to the DB - # verification method #%] - - [% IF user.authorizer.can_change_password %] - <td>[ <a href="index.cgi?GoAheadAndLogIn=1#forgot">Forgot my Password</a> ]</td> - [% END %] - </tr> - </table> - -</form> - +[% target = urlbase _ target %] +<li> + <form name="login" action="[% target FILTER html %]" + class="mini_login" + method="POST" id="mini_login[% qs_suffix FILTER html %]" + onsubmit="return check_mini_login_fields( '[% qs_suffix FILTER html %]' );" + > + <span class="separator">| </span> + <input id="Bugzilla_login[% qs_suffix FILTER html %]" + class="bz_login" + name="Bugzilla_login" + onfocus="mini_login_on_focus( this )" + > + <input class="bz_password" + id="Bugzilla_password[% qs_suffix FILTER html %]" + name="Bugzilla_password" + type="password" + onfocus="mini_login_on_focus( this )" + > + <input type="submit" name="GoAheadAndLogIn" value="Log in" id="log_in"> + [<a href="[% target FILTER html %]?GoAheadAndLogIn=1">options</a>] + <div class="bz_default_hidden"> + [% PROCESS "global/hidden-fields.html.tmpl" + exclude="^Bugzilla_(login|password|restrictlogin)$" %] + </div> + <script type="text/javascript"> + mini_login_constants = { + "login" : "login", + "password" : "password", + "warning" : "You must set the login and password before logging in." + } + YAHOO.util.Event.onDOMReady(function() { + init_mini_login_form('[% qs_suffix FILTER html %]'); + } ); + </script> + </form> +</li> |