login.jsp 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <%@ page language="java" pageEncoding="UTF-8"%>
  2. <script type="text/javascript">
  3. function ini(){
  4. document.form1.logonName.focus();
  5. }
  6. </script>
  7. <html>
  8. <head>
  9. <meta http-equiv="Content-Language" content="zh-cn">
  10. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  11. <title></title>
  12. <link href="${pageContext.request.contextPath}/css/Style.css" rel="stylesheet" type="text/css">
  13. </head>
  14. <body onload="ini()">
  15. <table style="background-color: #FFFFFF" width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
  16. <tr>
  17. <td align="center">
  18. <table width="452" height="290" border="0" cellpadding="0" cellspacing="0">
  19. <tr>
  20. <td bgcolor="#FFFFFF">
  21. <table width="452" height="290" border="0" cellpadding="0" cellspacing="0">
  22. <tr>
  23. <td height="74">
  24. <img width="100%" height="74px" src="${pageContext.request.contextPath}/images/logintitle.gif">
  25. </td>
  26. </tr>
  27. <tr>
  28. <td align="center" valign="bottom" background="${pageContext.request.contextPath}/images/loginbg.gif">
  29. <form id="loginAction_home" name="form1" action="${pageContext.request.contextPath}/person?method=login" target="_parent" method="post">
  30. <table border="0" align="center" cellpadding="2" cellspacing="0">
  31. <tr>
  32. <td>&nbsp;</td>
  33. </tr>
  34. <tr align="center">
  35. <td height="30" colspan="2" style="border-bottom: 1px dotted #cccccc">
  36. <strong style="font-size: 14px;">请登录</strong>
  37. </td>
  38. </tr>
  39. <tr>
  40. <td height="30" nowrap>
  41. <font color="000F60"><strong>用户名:</strong> </font>
  42. </td>
  43. <td>
  44. <input type="text" name="username" value="" id="logonName" class="text" style="width: 160px;"/>
  45. </td>
  46. </tr>
  47. <tr>
  48. <td height="30" nowrap>
  49. <strong><font color="000F60">密码: </font> </strong>
  50. </td>
  51. <td>
  52. <input type="password" name="password" id="logonPwd" class="text" style="width: 160px;"/>
  53. </td>
  54. </tr>
  55. <tr>
  56. <td height="30" nowrap colspan="2">
  57. <strong><font color="red"></font> </strong>
  58. </td>
  59. </tr>
  60. <tr>
  61. <td height="30">
  62. </td>
  63. <td>
  64. <input type="submit" name="submit" value="&#30331;&#24405;" class="buttoninput"/>
  65. <a href="${pageContext.request.contextPath}/login/register.jsp"><input type="button" name="register" value="注册"></a>
  66. <input type="reset" name="reset" value="&#21462;&#28040;" class="buttoninput"/>
  67. </td>
  68. </tr>
  69. </table>
  70. </form>
  71. </td>
  72. </tr>
  73. </table>
  74. </td>
  75. </tr>
  76. </table>
  77. </td>
  78. </tr>
  79. </table>
  80. </body>
  81. </html>