usermanagement.jsp 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
  2. <%
  3. String path = request.getContextPath();
  4. String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
  5. %>
  6. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  7. <html>
  8. <head>
  9. <base href="<%=basePath%>">
  10. <title>My JSP '3.jsp' starting page</title>
  11. <meta http-equiv="pragma" content="no-cache">
  12. <meta http-equiv="cache-control" content="no-cache">
  13. <meta http-equiv="expires" content="0">
  14. <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
  15. <meta http-equiv="description" content="This is my page">
  16. <meta http-equiv="X-UA-Compatible" content="IE=9"/>
  17. <meta http-equiv="X-UA-Compatible" content="IE=10"/>
  18. <link rel="stylesheet" type="text/css" href="css/common/hzbstyle.css">
  19. </head>
  20. <body>
  21. <form action="">
  22. <table>
  23. <tr><td><span class="hzbspan">用户名:</span></td><td><input type="text"/></td></tr>
  24. <tr><td><span class="hzbspan">旧密码:</span></td><td><input type="text"/></td></tr>
  25. <tr><td><span class="hzbspan">新密码:</span></td><td><input type="text"/></td></tr>
  26. <tr><td><span class="hzbspan">密码确认:</span></td><td><input type="text"/></td></tr>
  27. <tr><td><span class="hzbspan"><input type="submit" value="确认修改"/></span></td><td></td></tr>
  28. </table>
  29. </form>
  30. </body>
  31. </html>