Index: /trunk/eCard/eCardMVC/Platnosci/Views/Shared/Site.Master
===================================================================
--- /trunk/eCard/eCardMVC/Platnosci/Views/Shared/Site.Master (revision 888)
+++ /trunk/eCard/eCardMVC/Platnosci/Views/Shared/Site.Master (revision 908)
@@ -14,5 +14,5 @@
             <td class="tlo">
                 <table class= "wtab" cellpadding="0" cellspacing="0" border="0">
-                    <tr class="padding">
+                    <tr>
                         <%=Html.Logo()%>
                         <%string querystring = Request.QueryString.ToString();%>
@@ -25,13 +25,11 @@
                         </td>
                     </tr>       
-                    <tr class="padding">
+                    <tr>
                         <%if (ConfigurationManager.AppSettings["Css"] != "admoto"){%>
-                            <td>
-                                <div id="title">
-                                    <h1><asp:Label ID="napis" runat="server" Text="<%$Resources:tlumaczenia,tytul%>"></asp:Label></h1>
-                                </div>
+                            <td class="title">
+                                <asp:Label ID="napis" runat="server" Text="<%$Resources:tlumaczenia,tytul%>"></asp:Label>
                             </td>  
                         <%}%>        
-                        <td class="kontrolkaLogowania"                   
+                        <td class="kontrolkaLogowania">                  
                             <div id="logindisplay"><br /><br /><% Html.RenderPartial("LogOnUserControl"); %></div>
                         </td>            
Index: /trunk/eCard/eCardMVC/Platnosci/Views/Account/LogOn.aspx
===================================================================
--- /trunk/eCard/eCardMVC/Platnosci/Views/Account/LogOn.aspx (revision 882)
+++ /trunk/eCard/eCardMVC/Platnosci/Views/Account/LogOn.aspx (revision 908)
@@ -12,7 +12,8 @@
 <asp:Content ID="loginContent" ContentPlaceHolderID="MainContent" runat="server">
   
-    <h2>
+    <div class="zalogujTitle">
         <%=HttpContext.GetGlobalResourceObject("tlumaczenia","LoginInfo").ToString()%>
-    </h2>                        
+    </div>                        
+    <div id="odstep"></div>
     
     <%string info = HttpContext.GetGlobalResourceObject("tlumaczenia", "validateInfo").ToString(); %>
@@ -20,8 +21,9 @@
 
     <% using (Html.BeginForm()) { %>
-        
-        <table class="tablelogin"> 
+        <table class="tablelogin" border="0" cellpadding="0" cellspacing="0">
+            <tr><td rowspan="9" class="TableRightMargin"></td></tr>
+            <tr><td class="przestrzen">&nbsp</td></tr>
             <tr>
-                <td>
+                <td width="430px">
                     <asp:Label ID="info" Text="<%$Resources:tlumaczenia,info %>" runat="server"></asp:Label>
                     <br /><br /> 
@@ -31,5 +33,5 @@
                 <td class="label_w"><asp:Label ID="nip" Text="<%$Resources:tlumaczenia,Nip %>" runat="server"></asp:Label></td>
             </tr>
-            <tr>    
+            <tr> 
                 <td>
                     <%= Html.TextBox("nip")%>
@@ -40,5 +42,5 @@
                 <td class="label_w"><asp:Label ID="numerfaktury" Text="<%$Resources:tlumaczenia,NumerFaktury %>" runat="server"></asp:Label></td>
             </tr>
-            <tr>    
+            <tr> 
                 <td>
                     <%= Html.TextBox("numer_faktury")%>
@@ -51,5 +53,6 @@
                     <input id="loguj" name="id" type="submit" value="<%=HttpContext.GetGlobalResourceObject("tlumaczenia","Zaloguj").ToString()%>"/>
                 </td>
-            </tr>                                
+            </tr> 
+            <tr><td class="przestrzen">&nbsp</td></tr>                               
         </table>     
     <% } %>
Index: /trunk/eCard/eCardMVC/Platnosci/Helpers/helper.cs
===================================================================
--- /trunk/eCard/eCardMVC/Platnosci/Helpers/helper.cs (revision 886)
+++ /trunk/eCard/eCardMVC/Platnosci/Helpers/helper.cs (revision 908)
@@ -133,5 +133,5 @@
             if (ConfigurationManager.AppSettings["Css"] == "admoto")
             { 
-                logotag += HttpContext.GetGlobalResourceObject("tlumaczenia", "tytul").ToString();
+                logotag += "<span>"+HttpContext.GetGlobalResourceObject("tlumaczenia", "tytul").ToString()+"</span>";
             }
 
Index: /trunk/eCard/eCardMVC/Platnosci/Controllers/PlatnoscController.cs
===================================================================
--- /trunk/eCard/eCardMVC/Platnosci/Controllers/PlatnoscController.cs (revision 905)
+++ /trunk/eCard/eCardMVC/Platnosci/Controllers/PlatnoscController.cs (revision 908)
@@ -159,5 +159,7 @@
             _repConfirm.Insert(potwierdzenie);
             UpdateStatus(ORDERNUMBER, CURRENTSTATE);
-            return new EmptyResult();
+            var content = new ContentResult();
+            content.Content = "OK";
+            return content;
         }
         private Payer InitPayer(string FirstName, string LastName, int Id_faktury)
Index: /trunk/eCard/eCardMVC/Platnosci/Platnosci.Web.csproj
===================================================================
--- /trunk/eCard/eCardMVC/Platnosci/Platnosci.Web.csproj (revision 903)
+++ /trunk/eCard/eCardMVC/Platnosci/Platnosci.Web.csproj (revision 908)
@@ -136,7 +136,4 @@
   </ItemGroup>
   <ItemGroup>
-    <Content Include="Views\Shared\Glowna.Master" />
-  </ItemGroup>
-  <ItemGroup>
     <Content Include="Content\admoto.css" />
     <Content Include="Content\truck.css" />
@@ -160,4 +157,5 @@
       <Generator>GlobalResourceProxyGenerator</Generator>
       <LastGenOutput>tlumaczenia.pl.designer.cs</LastGenOutput>
+      <SubType>Designer</SubType>
     </Content>
   </ItemGroup>
@@ -166,4 +164,5 @@
       <Generator>GlobalResourceProxyGenerator</Generator>
       <LastGenOutput>tlumaczenia.designer.cs</LastGenOutput>
+      <SubType>Designer</SubType>
     </Content>
   </ItemGroup>
@@ -178,4 +177,5 @@
       <Generator>GlobalResourceProxyGenerator</Generator>
       <LastGenOutput>tlumaczenia.fr.designer.cs</LastGenOutput>
+      <SubType>Designer</SubType>
     </Content>
   </ItemGroup>
@@ -184,4 +184,5 @@
       <Generator>GlobalResourceProxyGenerator</Generator>
       <LastGenOutput>tlumaczenia.it.designer.cs</LastGenOutput>
+      <SubType>Designer</SubType>
     </Content>
     <Content Include="Views\Platnosc\Fail.aspx" />
Index: /trunk/eCard/eCardMVC/Platnosci/Content/truck.css
===================================================================
--- /trunk/eCard/eCardMVC/Platnosci/Content/truck.css (revision 886)
+++ /trunk/eCard/eCardMVC/Platnosci/Content/truck.css (revision 908)
@@ -1,7 +1,6 @@
-﻿
-#flagi a:link,a:active, a:visited
+﻿#flagi a:link, a:active, a:visited
 {
     text-decoration: none;
-    color: #1B1D21;    
+    color: #1B1D21;     
 }
 .pagecontent
@@ -16,9 +15,8 @@
 #logindisplay
 {
-    font-size:1.1em;
-    display:block;
-    text-align:right;
-    margin:10px;
-    color:White;
+    font-size: 1.1em;
+    display: block;
+    text-align: right;
+    color: White;
 }
 #logindisplay a:link
Index: /trunk/eCard/eCardMVC/Platnosci/Content/admoto.css
===================================================================
--- /trunk/eCard/eCardMVC/Platnosci/Content/admoto.css (revision 898)
+++ /trunk/eCard/eCardMVC/Platnosci/Content/admoto.css (revision 908)
@@ -7,26 +7,18 @@
 {
     border-bottom: solid 3px #ff8c00;
+    border-top: solid 5px #ff8c00;
 }
-.logo
+.logo span
 {
-    vertical-align: bottom;
-    padding-bottom: 0px;
-    margin-bottom: 0px; 
-    border-bottom: solid 5px #ff8c00; 
     font-weight: bold;
-    color: #a9a9a9;
-    line-height: 2em;
+    color: #a9a9a9; 
+    font-size: 17px !important;
     font-family: Arial, Helvetica, sans-serif;
-    font-size: 17px !important; /*bylo 18px */
+    vertical-align: bottom;   
 }
 .logo img
 {
     position:relative;
-    top: 17px;
-}
-.kontrolkaLogowania
-{
-    padding-right: 10px;
-    border-bottom: solid 5px #ff8c00;
+    top: 10px;
 }
 #logindisplay a:link
@@ -50,5 +42,5 @@
 {
     float: right;
-    vertical-align:bottom;
+    vertical-align: bottom;
 }
 .tlo
Index: /trunk/eCard/eCardMVC/Platnosci/Content/Site.css
===================================================================
--- /trunk/eCard/eCardMVC/Platnosci/Content/Site.css (revision 898)
+++ /trunk/eCard/eCardMVC/Platnosci/Content/Site.css (revision 908)
@@ -13,4 +13,9 @@
     line-height: 1.6em;
 }
+.zalogujTitle
+{
+    font-weight: bold;
+    font-size: 15px;
+}
 .SzczegolyZlecenia
 {
@@ -21,8 +26,5 @@
     font-weight: bold;
 }
-.black
-{ 
-    padding-right: 10px; 
-}
+
 .wtab
 {
@@ -30,4 +32,9 @@
     margin-left: auto;
     margin-right: auto;
+}
+.tlo
+{
+    padding: 10px 10px 0 10px;
+    
 }
 #header
@@ -40,5 +47,5 @@
 #main
 {
-    padding: 0px 30px 15px 30px;
+    padding: 15px 30px 15px 30px;
     background-color: #fff;
     margin-bottom: 30px;
@@ -161,6 +168,4 @@
 #flagi
 {
-    padding-top: 4px;
-    padding-right: 10px; 
     text-align: right;
 }
@@ -180,6 +185,7 @@
 .label_w
 {
-    width: 120px;     
-    font-weight: bold;
+    width: 150px;     
+    font-weight: bold;
+    padding-top: 10px;
 }
 .input_w
@@ -193,9 +199,14 @@
 .tablelogin
 {
-     width: 45%;
-     border: solid 1px #a9a9a9;  
-     padding-left: 20px;
-     padding-top: 20px;
-     padding-bottom: 20px;        
+     border: solid 1px #a9a9a9;
+}
+.TableRightMargin
+{
+    width: 15px;
+}
+.przestrzen
+{
+    height: 15px;
+    font-size: 0px;
 }
 .col1
@@ -239,5 +250,5 @@
 #odstep
 {
-    padding-bottom: 5pt;
+    height: 20px;
 }
 .but
@@ -274,4 +285,16 @@
     font-weight: bold;
 }
-
-
+.LogOfflink a
+{
+    text-decoration: underline;
+    color: Red;    
+}
+.title
+{
+    vertical-align: bottom;
+    padding-left: 15px;
+    font-size: 18px;
+    font-weight: bold;
+}
+
+
