From 5c8a0d34a1cc70ff31f11c7904b718d8784c616d Mon Sep 17 00:00:00 2001 From: "mkanat%bugzilla.org" <> Date: Fri, 22 May 2009 00:14:24 +0000 Subject: Bug 482556: Put "Forgot Password" in the header and footer so people can still f ind it Patch by Max Kanat-Alexander r=LpSolit, a=LpSolit --- js/global.js | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 56 insertions(+), 5 deletions(-) (limited to 'js') diff --git a/js/global.js b/js/global.js index de3d7915d..77e40d4c8 100644 --- a/js/global.js +++ b/js/global.js @@ -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/ @@ -10,25 +10,76 @@ * * The Original Code is the Bugzilla Bug Tracking System. * -* Contributor(s): Guy Pyrzak +* Contributor(s): +* Guy Pyrzak +* Max Kanat-Alexander * */ var mini_login_constants; +function show_mini_login_form( suffix ) { + var login_link = document.getElementById('login_link' + suffix); + var login_form = document.getElementById('mini_login' + suffix); + var account_container = document.getElementById('new_account_container' + + suffix); + + YAHOO.util.Dom.addClass(login_link, 'bz_default_hidden'); + YAHOO.util.Dom.removeClass(login_form, 'bz_default_hidden'); + YAHOO.util.Dom.addClass(account_container, 'bz_default_hidden'); + return false; +} + +function hide_mini_login_form( suffix ) { + var login_link = document.getElementById('login_link' + suffix); + var login_form = document.getElementById('mini_login' + suffix); + var account_container = document.getElementById('new_account_container' + + suffix); + + YAHOO.util.Dom.removeClass(login_link, 'bz_default_hidden'); + YAHOO.util.Dom.addClass(login_form, 'bz_default_hidden'); + YAHOO.util.Dom.removeClass(account_container, 'bz_default_hidden'); + return false; +} + +function show_forgot_form( suffix ) { + var forgot_link = document.getElementById('forgot_link' + suffix); + var forgot_form = document.getElementById('forgot_form' + suffix); + var login_container = document.getElementById('mini_login_container' + + suffix); + YAHOO.util.Dom.addClass(forgot_link, 'bz_default_hidden'); + YAHOO.util.Dom.removeClass(forgot_form, 'bz_default_hidden'); + YAHOO.util.Dom.addClass(login_container, 'bz_default_hidden'); + return false; +} + +function hide_forgot_form( suffix ) { + var forgot_link = document.getElementById('forgot_link' + suffix); + var forgot_form = document.getElementById('forgot_form' + suffix); + var login_container = document.getElementById('mini_login_container' + + suffix); + YAHOO.util.Dom.removeClass(forgot_link, 'bz_default_hidden'); + YAHOO.util.Dom.addClass(forgot_form, 'bz_default_hidden'); + YAHOO.util.Dom.removeClass(login_container, 'bz_default_hidden'); + return false; +} + function init_mini_login_form( suffix ) { var mini_login = document.getElementById('Bugzilla_login' + suffix ); var mini_password = document.getElementById('Bugzilla_password' + suffix ); var mini_dummy = document.getElementById( 'Bugzilla_password_dummy' + suffix); // If the login and password are blank when the page loads, we display - // "login" and "password" in the boxes + // "login" and "password" in the boxes by default. if (mini_login.value == "" && mini_password.value == "") { mini_login.value = mini_login_constants.login; YAHOO.util.Dom.addClass(mini_login, "bz_mini_login_help"); YAHOO.util.Dom.addClass(mini_password, 'bz_default_hidden'); YAHOO.util.Dom.removeClass(mini_dummy, 'bz_default_hidden'); } + else { + show_mini_login_form(suffix); + } } // Clear the words "login" and "password" from the form when you click @@ -51,8 +102,8 @@ function mini_login_on_focus( suffix ) { function check_mini_login_fields( suffix ) { var mini_login = document.getElementById('Bugzilla_login' + suffix ); var mini_password = document.getElementById('Bugzilla_password' + suffix ); - if( ( mini_login.value != "" && mini_password.value != "" ) && - mini_login.value != mini_login_constants.login) + if( (mini_login.value != "" && mini_password.value != "") + && mini_login.value != mini_login_constants.login ) { return true; } -- cgit v1.2.3-24-g4f1b