You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ha...@apache.org on 2008/09/29 05:21:10 UTC

svn commit: r699971 - /ofbiz/trunk/specialpurpose/mypage/webapp/mypage/login.ftl

Author: hansbak
Date: Sun Sep 28 20:21:10 2008
New Revision: 699971

URL: http://svn.apache.org/viewvc?rev=699971&view=rev
Log:
changed mypage login screen to make request for view customer request when not logged in work again...

Modified:
    ofbiz/trunk/specialpurpose/mypage/webapp/mypage/login.ftl

Modified: ofbiz/trunk/specialpurpose/mypage/webapp/mypage/login.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/mypage/webapp/mypage/login.ftl?rev=699971&r1=699970&r2=699971&view=diff
==============================================================================
--- ofbiz/trunk/specialpurpose/mypage/webapp/mypage/login.ftl (original)
+++ ofbiz/trunk/specialpurpose/mypage/webapp/mypage/login.ftl Sun Sep 28 20:21:10 2008
@@ -1,10 +1,17 @@
 <#if requestAttributes.uiLabelMap?exists><#assign uiLabelMap = requestAttributes.uiLabelMap></#if>
 
+<#assign previousParams = sessionAttributes._PREVIOUS_PARAMS_?if_exists>
 <#if previousParams?has_content>
   <#assign previousParams = "?" + previousParams>
 </#if>
 
 <#assign username = requestParameters.USERNAME?default((sessionAttributes.autoUserLogin.userLoginId)?default(""))>
+<#if username != "">
+  <#assign focusName = false>
+<#else>
+  <#assign focusName = true>
+</#if>
+
 <center>
   <div class="screenlet login-screenlet">
     <div class="screenlet-title-bar">
@@ -27,6 +34,7 @@
             </td>
           </tr>
         </table>
+        <input type="hidden" name="JavaScriptEnabled" value="N"/>
       </form>
     </div>
   </div>
@@ -49,6 +57,7 @@
             </td>
           </tr>
         </table>
+        <input type="hidden" name="JavaScriptEnabled" value="N"/>
       </form>
     </div>
   </div>
@@ -56,6 +65,10 @@
 </center>
 
 <script language="JavaScript" type="text/javascript">
-  <#if autoUserLogin?has_content>document.loginform.PASSWORD.focus();</#if>
-  <#if !autoUserLogin?has_content>document.loginform.USERNAME.focus();</#if>
+  document.loginform.JavaScriptEnabled.value = "Y";
+  <#if focusName>
+    document.loginform.USERNAME.focus();
+  <#else>
+    document.loginform.PASSWORD.focus();
+  </#if>
 </script>
\ No newline at end of file