userPassword_.jsp
上传用户:huijianzhu
上传日期:2009-11-25
资源大小:9825k
文件大小:5k
源码类别:

电子政务应用

开发平台:

Java

  1. <%@ page language="java" errorPage="/sys/error.jsp" pageEncoding="GB2312" contentType="text/html;charset=GB2312" %>
  2. <%@ include file="/common/taglibs.jsp"%>
  3. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">
  4. <html>
  5. <head>
  6. <%@ include file="/common/meta.jsp"%>
  7. <title>人员管理</title>
  8. <link href='<c:url value="/sys/css/css.css"/>' type="text/css" rel="stylesheet">
  9. <script language="javascript">
  10. <!--
  11. var isSubmit = false;
  12. function checkForm(form) {
  13.     if(form.oripassword.value == "" || form.oripassword.value == " ") {
  14. alert("原密码不能为空!");
  15. form.oripassword.focus();
  16. return false;
  17. }
  18. if(form.oripassword.value.length < 6) {
  19. alert("原密码长度不能小于6位!");
  20. form.oripassword.focus();
  21. return false;
  22. }
  23. if(form.oripassword.value.length > 20) {
  24. alert("原密码长度不能大于20位!");
  25. form.oripassword.focus();
  26. return false;
  27. }
  28. if(form.password.value == "" || form.password.value == " ") {
  29. alert("新密码不能为空!");
  30. form.password.focus();
  31. return false;
  32. }    
  33. if(form.password.value.length < 6) {
  34. alert("新密码长度不能小于6位!");
  35. form.password.focus();
  36. return false;
  37. }
  38. if(form.password.value.length > 20) {
  39. alert("新密码长度不能大于20位!");
  40. form.password.focus();
  41. return false;
  42. }
  43. if(form.confirmPassword.value == "" || form.confirmPassword.value == " ") {
  44. alert("确认新密码不能为空!");
  45. form.confirmPassword.focus();
  46. return false;
  47. }
  48. if(form.password.value != form.confirmPassword.value) {
  49. alert("新密码和确认新密码不同!");
  50. form.password.focus();
  51. return false;
  52. }
  53. if(!isSubmit) {
  54. isSubmit = true;
  55.     return true;
  56. }
  57. }
  58. function goPage(form) {
  59. form.action = '<c:url value="/sys/main.html"/>';
  60. form.onsubmit = "";
  61.     form.submit();
  62. }
  63. //-->
  64. </script>
  65. </head>
  66. <body  leftmargin=0 topmargin=0 marginheight="0" marginwidth="0">
  67. <table border="0" cellpadding="0" cellspacing="0" align="center" width="100%" height="100%">
  68. <tr>
  69. <!-- left start -->
  70. <td width="166" valign="top" bgcolor="#ffffff">
  71. <table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%">
  72.   <tr>
  73. <td width="100%" align="left" valign="bottom">
  74.     <img border="0" src="images/ad_left_bottom.jpg" width="166" height="83"></td>
  75.   </tr>
  76. </table>
  77. </td>
  78. <!-- left end -->
  79. <!-- main start -->
  80. <td valign="top">
  81. <table border="0" cellpadding="0" cellspacing="0" align="center" width="100%" height="100%" class="mtable">
  82. <tr><td valign="top">
  83. <!-- 标题 start -->
  84. <table border="0" cellpadding="0" cellspacing="0" align="center" width="100%" height="50" bordercolor="#111111" class="ltable">
  85.   <tr>
  86.     <td class="menu" width="580" align="right">
  87.         <font class="text1">g-kskt </font><font class="text2"> 克什克腾政府网信息管理平台</font></td>
  88.   </tr>
  89. </table>
  90. <!-- 标题 end -->
  91. <!-- 主要内容 start -->
  92. <table cellpadding="0" cellspacing="0" align="center" width="100%" height="380" class="ltable">
  93. <html:form action="/sys/changeUserPassword.html" onsubmit="return checkForm(this);">
  94. <input type="hidden" name="method" value="changeUserPassword">
  95. <input type="hidden" name="change" value="change">
  96.   <tr>
  97.     <td class="menu" width="612" align="right">
  98.         <!-- 操作 start -->
  99. <table cellspacing="1" cellpadding="0" width="565" bgColor="#006699" border="1" bordercolor="#E1F4FD">
  100. <tr bgColor="#f5f5f5">
  101. <td colspan="2" align="center">&nbsp;修改密码&nbsp;<font color="red"><c:out value="${errorMsg}"/></font></td>
  102. </tr>
  103. <tr bgColor="#ffffff">
  104. <td width="20%" align="right">原密码:</td>
  105. <td width="80%" nowrap><input type="password" name="oripassword" class="input_text" style="width:90%"/><font color="red">*</font>6-20位</td>
  106. </tr>
  107. <tr bgColor="#ffffff">
  108. <td width="20%" align="right">新密码:</td>
  109. <td width="80%" nowrap><html:password property="password" styleClass="input_text" style="width:90%"/><font color="red">*</font>6-20位</td>
  110. </tr>
  111. <tr bgColor="#ffffff">
  112. <td width="20%" align="right">确认新密码:</td>
  113. <td width="80%"><html:password property="confirmPassword" styleClass="input_text" style="width:90%"/><font color="red">*</font></td>
  114. </tr>
  115. <tr bgColor="#E1F4FD">
  116. <td colspan="2" align="center" valign="middle">
  117. <input type="submit" style="width:60px" value=" 确定 "> 
  118. <input type="button" style="width:60px" value=" 取消 " onclick="goPage(this.form);">
  119. </td>
  120. </tr>
  121.         </table>
  122. <!-- 操作 end -->
  123.     </td>
  124.   </tr>
  125. </html:form>
  126. </table>
  127. <!-- 主要内容 end -->
  128. </td></tr>
  129. </table>
  130. </td>
  131. <!-- main end -->
  132. </tr>
  133. </table>
  134. </body>
  135. </html>