From bf2f39ea6d2b49c7495a43cca19ab18f27f8292e Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Mon, 29 Sep 2008 09:02:02 -0400
Subject: [PATCH] - #1485290: Fix unread counter when displaying cached massage in preview panel - remove some empty lines in app.js

---
 skins/default/templates/login.html |   39 ++++++++++++++++++++++++++++-----------
 1 files changed, 28 insertions(+), 11 deletions(-)

diff --git a/skins/default/templates/login.html b/skins/default/templates/login.html
index bf928c2..9e1cc4a 100644
--- a/skins/default/templates/login.html
+++ b/skins/default/templates/login.html
@@ -1,32 +1,49 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
-<title>Welcome to RoundCube|Mail</title>
-<link rel="stylesheet" type="text/css" href="/common.css" />
+<title><roundcube:object name="pagetitle" /></title>
+<roundcube:include file="/includes/links.html" />
 <style type="text/css">
 
-#login-form
-  {
-	margin: 150px auto;
-	width: 350px;
-  }
+#login-form {
+  margin-left: auto;
+  margin-right: auto;
+  margin-top: 50px;
+  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>
 </head>
 <body>
 
-<div id="header"><img src="skins/default/images/roundcube_logo.png" id="rcmbtn104" width="165" height="55" border="0" alt="RoundCube Webmail" /></div>
+<img src="/images/roundcube_logo.png" border="0" alt="<roundcube:object name='productname' />" style="margin:2px 12px" />
 
 <roundcube:object name="message" id="message" />
 
 <div id="login-form">
-<form name="form" action="./" method="post">
-<roundcube:object name="loginform" form="form" />
+<div class="boxtitle"><roundcube:label name="welcome" /></div>
+<div class="boxcontent">
 
-<p style="text-align: center;"><input type="submit" class="button" value="<roundcube:label name="login" />">
+<form name="form" action="./" method="post">
+<roundcube:object name="loginform" form="form" autocomplete="off" />
+
+<p style="text-align:center;"><input type="submit" class="button mainaction" value="<roundcube:label name='login' />" /></p>
 
 </form>
 </div>
+</div>
 
 </body>
 </html>

--
Gitblit v1.9.1