From 4fcfc399ba3cc036f8e4b4245ef5fd1a00ff2c8b Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Sat, 3 Dec 2005 16:51:26 +0000 Subject: [PATCH] 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 --- includes/templates/Userlogin.php | 2 +- skins/monobook/main.css | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) 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 +} -- 2.20.1