/*login logo change */
function modify_logo() {
$bg_color = '#ffffff'; // default background color
if (get_option('login_bg_color')) {
$bg_color = get_option('login_bg_color'); // get the custom background color if it exists
}
echo '';
}
add_action('login_head', 'modify_logo');