From: Antoine Musso Date: Sat, 3 Dec 2005 16:51:26 +0000 (+0000) Subject: Fix validation issue with Special:Userlogin , the div and the form shared X-Git-Tag: 1.6.0~1057 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/password.php?a=commitdiff_plain;h=4fcfc399ba3cc036f8e4b4245ef5fd1a00ff2c8b;p=lhc%2Fweb%2Fwiklou.git Fix validation issue with Special:Userlogin , the div and the form shared the same id / name wich is invalid. Form element is now named userloginForm --- diff --git a/includes/templates/Userlogin.php b/includes/templates/Userlogin.php index 8e6fcda800..aa7eff3f26 100644 --- a/includes/templates/Userlogin.php +++ b/includes/templates/Userlogin.php @@ -26,7 +26,7 @@ class UserloginTemplate extends QuickTemplate {
-
+

msg('login') ?>

diff --git a/skins/monobook/main.css b/skins/monobook/main.css index a2b52cc4f0..81325f8135 100644 --- a/skins/monobook/main.css +++ b/skins/monobook/main.css @@ -1065,7 +1065,7 @@ div.prefsectiontip { margin-top: 2em; } -#userlogin { +#userloginForm { margin: 0 3em 1em 0; border: 1px solid #aaa; clear: both; @@ -1074,11 +1074,11 @@ div.prefsectiontip { float: left; } -#userlogin table { +#userloginForm table { background-color: #f9f9f9; } -#userlogin h2 { +#userloginForm h2 { padding-top: 0; } @@ -1400,4 +1400,4 @@ div.noarticletext { background: #fff; padding: .2em 1em; color: #000; -} \ No newline at end of file +}