From 0c219c78692561ce53108dc1800061f8b783898a Mon Sep 17 00:00:00 2001
From: thomascube <thomas@roundcube.net>
Date: Wed, 28 Mar 2007 04:23:42 -0400
Subject: [PATCH] Draw box around login form; created common boxtitle CSS class

---
 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 3739171..6f7999d 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>

--
Gitblit v1.9.1