diff options
author | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-09-08 23:44:34 +0000 |
---|---|---|
committer | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-09-08 23:44:34 +0000 |
commit | 8f58174dbfdc741af29638d304c6b503dc31f214 (patch) | |
tree | 4d0d66bde1cdb6eb7e7ed4cd974f54d188640085 | |
parent | 8f20a81aeb9e25a80ff07a35be240b5b97fea9b3 (diff) |
Adding labels to login page inputs, cleaning up css slightly
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@1546 4979c152-3d1c-0410-bac9-87ea11338e46
-rw-r--r-- | UI/login.css (renamed from css/scripts/login.css) | 4 | ||||
-rw-r--r-- | UI/login.html | 30 |
2 files changed, 27 insertions, 7 deletions
diff --git a/css/scripts/login.css b/UI/login.css index 9e4139e1..2809fe74 100644 --- a/css/scripts/login.css +++ b/UI/login.css @@ -4,13 +4,13 @@ div.login { margin-left: auto; width: 25em; padding: 2em; - padding-bottom: 1em; + padding-bottom: 2em; border-style: outset; } div.login div.login { width: 21em; - height: 18em; + height: 20em; border-width: 1px; border-style: solid; padding-bottom: 2em; diff --git a/UI/login.html b/UI/login.html index 680aed9b..c437c5dc 100644 --- a/UI/login.html +++ b/UI/login.html @@ -8,7 +8,7 @@ <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" /> <link rel="stylesheet" href="css/ledgersmb.css" type="text/css" title="LedgerSMB stylesheet" /> - <link rel="stylesheet" href="css/scripts/login.css" type="text/css" title="LedgerSMB stylesheet" /> + <link rel="stylesheet" href="UI/login.css" type="text/css" title="LedgerSMB stylesheet" /> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> <meta name="robots" content="noindex,nofollow" /> @@ -50,12 +50,32 @@ <h1 class="login" align="center">Version SVN Trunk</h1> <div align="center"> <div class="labelledinput"> - <div class="label"><?lsmb text('Name') ?></div> - <div class="input"><input class="login" name="login" size="30" value="" /></div> + <div class="label"> + <label for="login"> + <?lsmb text('Name') ?> + </label> + </div> + <div class="input"> + <input class="login" + name="login" size="30" + value="" + id="login" /> + </div> </div> <div class="labelledinput"> - <div class="label"><?lsmb text('Password') ?></div> - <div class="input"><input class="login" type="password" name="password" size="30" /></div> + <div class="label"> + <label for="password"> + <?lsmb text('Password') + ?> + </label> + </div> + <div class="input"> + <input class="login" + type="password" + name="password" + size="30" + id="password" /> + </div> </div> </div> <input type="hidden" name="path" value="bin/mozilla" /> |