diff options
author | thomascube <thomas@roundcube.net> | 2007-03-28 08:23:42 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2007-03-28 08:23:42 +0000 |
commit | 0c219c78692561ce53108dc1800061f8b783898a (patch) | |
tree | 15a0a7fbfc45f36063e89406a4ff1474f878e101 /skins/default/templates/login.html | |
parent | aad6e2a9c4857715c8bd56693d21b87dd0c16263 (diff) |
Draw box around login form; created common boxtitle CSS class
Diffstat (limited to 'skins/default/templates/login.html')
-rw-r--r-- | skins/default/templates/login.html | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/skins/default/templates/login.html b/skins/default/templates/login.html index 3739171fe..6f7999d77 100644 --- a/skins/default/templates/login.html +++ b/skins/default/templates/login.html @@ -9,7 +9,19 @@ margin-left: auto; margin-right: auto; margin-top: 50px; - width: 350px; + width: 380px; + border: 1px solid #999; +} + +#login-form table td.title +{ + color: #666; + text-align: right; + padding-right: 10px; +} + +.boxcontent { + padding: 20px 20px 10px 20px; } </style> @@ -21,13 +33,17 @@ <roundcube:object name="message" id="message" /> <div id="login-form"> +<div class="boxtitle"><roundcube:label name="welcome" /></div> +<div class="boxcontent"> + <form name="form" action="./" method="post"> <roundcube:object name="loginform" form="form" /> -<p style="text-align: center;"><input type="submit" class="button" value="<roundcube:label name='login' />" /></p> +<p style="text-align:center;"><input type="submit" class="button" value="<roundcube:label name='login' />" /></p> </form> </div> +</div> </body> </html> |