diff options
author | xgizzmo <xgizzmo@ampache> | 2006-09-30 01:14:18 +0000 |
---|---|---|
committer | xgizzmo <xgizzmo@ampache> | 2006-09-30 01:14:18 +0000 |
commit | 6b7284fab7f49f54f4d72db6c690bbea7f7b7af7 (patch) | |
tree | 176e2187d098112d131499432dc96f891e296878 /login.php | |
parent | 1fee2840f53567aa29249c9699faa85d9fb161a1 (diff) | |
download | ampache-6b7284fab7f49f54f4d72db6c690bbea7f7b7af7.tar.gz ampache-6b7284fab7f49f54f4d72db6c690bbea7f7b7af7.tar.bz2 ampache-6b7284fab7f49f54f4d72db6c690bbea7f7b7af7.zip |
Fixed a missing image in default.css and a bit of XHTML tweakage
Diffstat (limited to 'login.php')
-rw-r--r-- | login.php | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -129,17 +129,16 @@ $htmllang = str_replace("_","-",conf('lang')); <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo conf('site_charset'); ?>" /> <link rel="shortcut icon" href="<?php echo conf('web_path'); ?>/favicon.ico" /> +<link rel="stylesheet" href="templates/default.css" type="text/css" /> <title> <?php echo conf('site_title'); ?> </title> <script type="text/javascript" language="javascript"> function focus(){ document.login.username.focus(); } </script> - </head> + <body bgcolor="#D3D3D3" onload="focus();"> -<link rel="stylesheet" href="templates/default.css" type="text/css"> <?php - require(conf('prefix') . "/templates/show_login_form.inc"); if (@is_readable(conf('prefix') . '/config/motd.php')) { |