diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2008-11-12 18:13:59 +0000 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2008-11-12 18:13:59 +0000 |
commit | 2a9f8b5bcd6de819e461583bde1641aad3055d27 (patch) | |
tree | b30dbb003bb988d9b499eb8ee827040f1ff5e27f | |
parent | 91b149adbf42f71b1892cef4b90f62c1147c8d06 (diff) |
Added a legend to the fieldset
-rw-r--r-- | modules/user/views/login.html.php | 1 | ||||
-rw-r--r-- | themes/default/css/screen.css | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/modules/user/views/login.html.php b/modules/user/views/login.html.php index 6c646dde..58df6024 100644 --- a/modules/user/views/login.html.php +++ b/modules/user/views/login.html.php @@ -1,5 +1,6 @@ <? defined("SYSPATH") or die("No direct script access."); ?> <fieldset id="gLogin"> + <legend>Login</legend> <ul> <li> <label for="username">Username</label> diff --git a/themes/default/css/screen.css b/themes/default/css/screen.css index c524a2d0..5e37e8e9 100644 --- a/themes/default/css/screen.css +++ b/themes/default/css/screen.css @@ -372,6 +372,10 @@ table.gMetadata td.toggle { padding: 0; } + #gLoginMenu fieldset legend{ + display: none; +} + #gLoginForm { margin-top: 5px; } |