loginform.jsp

来自「国外的一套开源CRM」· JSP 代码 · 共 108 行

JSP
108
字号
<% String previousParams=(String)session.getAttribute("_PREVIOUS_PARAMS_"); %>
<% String loginFormUrl=controlPath + "/login"; if(previousParams != null) loginFormUrl=loginFormUrl + "?" + previousParams; %>

<SCRIPT FOR="window" EVENT="onload" LANGUAGE="JavaScript">
	// Reload the menu to clear the menu items.
	parent.parent.menu.location.href = parent.parent.menu.location.href;
</SCRIPT>
<SCRIPT FOR="window" EVENT="onunload" LANGUAGE="JavaScript">
	// Reload the menu to clear the menu items.
	parent.parent.menu.location.href = parent.parent.menu.location.href;
</SCRIPT>

 	  <TABLE CLASS="freeFormSectionDisplayTable">

		       <tr>
		       <td TD WIDTH="453">
		       		<p align="Center"><img border="0" src="/sfaimages/Financial-people-shadow.jpg" ></p>
		       </td>
		       <td>

 <TABLE CLASS="freeFormSectionDisplayTable" HEIGHT="100%">
  <TR>
   <TD VALIGN="top">

    <TABLE WIDTH="100%" CLASS="freeFormSectionTitleTable">
     <TR>
      <TD WIDTH="100%">
       <img src=/sfaimages/sf_keys.gif>Registered User Login
      </TD>
     </TR>
    </TABLE>



    <TABLE CLASS="freeFormSectionDisplayTable">
     <form method="POST" action="<%=response.encodeURL(loginFormUrl)%>" name="loginform" style='margin: 0;'>

      <tr>
       <td>
        &nbsp;
       </td>
       <td>
       </td>
       <td WIDTH="*">
       </td>
      </tr>

      <TR>
       <td CLASS="head3" WIDTH="100">
        User ID:
       </td>
       <td CLASS="head3" WIDTH="100">
        <input type="text" name="USERNAME" value="<%=UtilFormatOut.checkNull(request.getParameter("USERNAME"))%>" size="20">
       </td>
       <td WIDTH="*">
       </td>
      </tr>

      <tr>
       <td CLASS="head3">
        Password:
       </td>
       <td CLASS="head3">
        <input type="password" name="PASSWORD" value="" size="20">
       </td>
       <td WIDTH="*">
       </td>
      </tr>

      <tr>
       <td>
       </td>
       <td>
         <input type="submit" value="Login">
       </td>
       <td>
       </td>
      </tr>
     </form>
    </TABLE>

    <B><BR><RB>If your company is not registered yet, <a href="<ofbiz:url>/createNewAccount</ofbiz:url>?action=showInsert" target='content'> click here to set up a new company.</a></B>
    <P>
    <B><BR><RB>For instructions on how to use this system, <a href="/sfaimages/GettingStarted.pdf" target=_blank_>click here to download the GettingStarted Guide</a>.</B>


   </TD>
  </TR>
  <TR HEIGHT="*">
   <TD>
   </TD>
  </TR>
 </TABLE>
 
 				</td>
		      </tr>
		      <TR><TD WIDTH="453">
		     		</TD>
		      </tr>
	</table>

<script language="JavaScript">
<!--
  document.loginform.USERNAME.focus();
//-->
</script>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?