adminchangepwd.jsp 1.6 KB

1234567891011121314151617181920212223242526272829
  1. <%@ page language="java" import="java.util.*" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@include file="/context/mytags.jsp"%>
  3. <!DOCTYPE html>
  4. <html>
  5. <head>
  6. <title>用户信息</title>
  7. <t:base type="jquery,easyui,tools"></t:base>
  8. </head>
  9. <body style="overflow-y: hidden" scroll="no">
  10. <t:formvalid formid="formobj" refresh="false" dialog="true" action="userController.do?savenewpwdforuser" usePlugin="password" layout="table">
  11. <input id="id" type="hidden" name="id" value="${user.id }">
  12. <table style="width: 550px" cellpadding="0" cellspacing="1" class="formtable">
  13. <tbody>
  14. <tr>
  15. <td align="right"><label class="Validform_label"> <t:mutiLang langKey="common.password"/>: </label></td>
  16. <td class="value"><input type="password" class="inputxt" value="" name="password" plugin="passwordStrength" datatype="*6-18" errormsg="" /> <span class="passwordStrength"
  17. style="display: none;"><span><t:mutiLang langKey="common.weak"/></span><span><t:mutiLang langKey="common.middle"/></span><span class="last"><t:mutiLang langKey="common.strong"/></span> </span> <span class="Validform_checktip"><t:mutiLang langKey="password.rang6to18"/></span></td>
  18. </tr>
  19. <tr>
  20. <td align="right"><label class="Validform_label"> <t:mutiLang langKey="common.repeat.password"/>: </label></td>
  21. <td class="value"><input id="repassword" class="inputxt" type="password" recheck="password" datatype="*6-18" errormsg="两次输入的密码不一致!"> <span
  22. class="Validform_checktip"><t:mutiLang langKey="common.repeat.password"/></span></td>
  23. </tr>
  24. </tbody>
  25. </table>
  26. </t:formvalid>
  27. </body>