replicationlogin.jsp

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

JSP
71
字号
<%pageContext.setAttribute("PageName", "Data Replication Log In");%>
<%@ include file="/includes/header.jsp" %>
<%@ include file="/includes/errormsg.jsp"%>

<%
String loginFormUrl = controlPath + "/replicationLogin";
%>

<%@ include file="/replication/replicationHeader.jsp" %>

     <form method="POST" action="<%=response.encodeURL(controlPath + "/replicationPrompt")%>" name="loginform" style='margin: 0;'>
      <tr>
       <td CLASS="freeFormSectionLabel" COLSPAN="3">
        Please log into the master replication server
       </td>
      </tr>

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

      <TR>
       <td CLASS="freeFormSectionLabel" WIDTH="100">
        User ID:
       </td>
       <td CLASS="freeFormSectionField" WIDTH="100">
        <input type="text" name="replUserLoginId" size="20">
       </td>
       <td WIDTH="*">
       </td>
      </tr>

      <tr>
       <td CLASS="freeFormSectionLabel">
        Password:
       </td>
       <td CLASS="freeFormSectionField">
        <input type="password" name="replPassword" value="" size="20">
       </td>
       <td WIDTH="*">
       </td>
      </tr>

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


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

<%@ include file="/replication/replicationFooter.jsp" %>
<%@ include file="/includes/footer.jsp" %>

⌨️ 快捷键说明

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