changePassword.jsp 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <%@ page contentType="text/html;charset=UTF-8"%>
  2. <div class="theme-popover" style="width: 490px;height: 302px;position:absolute;">
  3. <div class="theme-poptit">
  4. <div class="popTitle">
  5. <h4>修改密码</h4>
  6. </div>
  7. <!-- <div class="close">
  8. <a href="#" title="关闭" onclick="guanbipop()" >×</a>
  9. </div> -->
  10. </div>
  11. <!-- 旧密码:<input type="text" class="form-control"><br/>
  12. 新密码:<input type="text" class="form-control"><br/>
  13. 确认密码:<input type="text" class="form-control"><br/> -->
  14. <form action="" method="post" style="padding:10px;text-align:center;">
  15. <table class="changePW_table">
  16. <tr>
  17. <td>旧密码:</td>
  18. <td><input type="password" class="form-control" id="oldPW"></td>
  19. <td><span class="hint" id="oldPW_hint"></span> </td>
  20. </tr>
  21. <tr>
  22. <td>新密码:</td>
  23. <td><input type="password" class="form-control" id="newPW"></td>
  24. <td><span class="hint" id="newPW_hint"></span> </td>
  25. </tr>
  26. <tr>
  27. <td>确认密码:</td>
  28. <td><input type="password" class="form-control" id="confirmPW"></td>
  29. <td><span class="hint" id="confirmPW_hint"></span> </td>
  30. </tr>
  31. </table>
  32. <div class="btnGroup">
  33. <a class="btn btn-default btn-sm" href="#" onclick="" id="btn1">
  34. <i class="glyphicon glyphicon-ok"></i>提交
  35. </a>
  36. <a class="btn btn-default btn-sm" href="#" onclick="" id="btn2">
  37. <i class="glyphicon glyphicon-remove" ></i>取消
  38. </a>
  39. </div>
  40. <span id="all_hint" class="hint"></span>
  41. </form>
  42. </div>
  43. <div class="theme-popover-mask"></div>