diff options
Diffstat (limited to 'UI')
-rw-r--r-- | UI/login.css | 48 | ||||
-rw-r--r-- | UI/login.html | 30 |
2 files changed, 73 insertions, 5 deletions
diff --git a/UI/login.css b/UI/login.css new file mode 100644 index 00000000..2809fe74 --- /dev/null +++ b/UI/login.css @@ -0,0 +1,48 @@ +div.login { + background-color: white; + margin-right: auto; + margin-left: auto; + width: 25em; + padding: 2em; + padding-bottom: 2em; + border-style: outset; +} + +div.login div.login { + width: 21em; + height: 20em; + border-width: 1px; + border-style: solid; + padding-bottom: 2em; +} +div.labelledinput { + width: 100%; + clear: both; +} +div.label { + width: 5em; + text-align: right; + float: left; + border-width: 1px; + margin: 0em; + padding-right: 0.5em; + margin-top: 0.5em; +} +div.input { + width: 14em; + margin: 0px; + text-align: left; + float: left; + border-width: 3px; + margin: 0em; + margin-top: 0.5em; +} +img.logo { + border-style: none; + width: 16em; + height: 8em; +} + +button { + margin-top: 10px; +} 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" /> |