summaryrefslogtreecommitdiff
path: root/UI/login.html
diff options
context:
space:
mode:
authoreinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2007-09-08 23:44:34 +0000
committereinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2007-09-08 23:44:34 +0000
commit8f58174dbfdc741af29638d304c6b503dc31f214 (patch)
tree4d0d66bde1cdb6eb7e7ed4cd974f54d188640085 /UI/login.html
parent8f20a81aeb9e25a80ff07a35be240b5b97fea9b3 (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
Diffstat (limited to 'UI/login.html')
-rw-r--r--UI/login.html30
1 files changed, 25 insertions, 5 deletions
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" />