admin-password-edit.html 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="renderer" content="webkit|ie-comp|ie-stand">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" />
  8. <meta http-equiv="Cache-Control" content="no-siteapp" />
  9. <!--[if lt IE 9]>
  10. <script type="text/javascript" src="http://libs.useso.com/js/html5shiv/3.7/html5shiv.min.js"></script>
  11. <script type="text/javascript" src="http://libs.useso.com/js/respond.js/1.4.2/respond.min.js"></script>
  12. <script type="text/javascript" src="http://cdn.bootcss.com/css3pie/2.0beta1/PIE_IE678.js"></script>
  13. <![endif]-->
  14. <link type="text/css" rel="stylesheet" href="css/H-ui.css"/>
  15. <link type="text/css" rel="stylesheet" href="css/H-ui.admin.css"/>
  16. <link type="text/css" rel="stylesheet" href="font/font-awesome.min.css"/>
  17. <!--[if IE 7]>
  18. <link href="http://www.bootcss.com/p/font-awesome/assets/css/font-awesome-ie7.min.css" rel="stylesheet" type="text/css" />
  19. <![endif]-->
  20. <title>修改密码</title>
  21. </head>
  22. <body>
  23. <div class="pd-20">
  24. <form class="Huiform" id="loginform" action="" method="post">
  25. <table class="table table-border table-bordered table-bg">
  26. <thead>
  27. <tr>
  28. <th colspan="2">修改密码</th>
  29. </tr>
  30. </thead>
  31. <tbody>
  32. <tr>
  33. <th class="text-r" width="30%">旧密码:</th>
  34. <td><input name="oldpassword" id="oldpassword" class="input-text" type="password" autocomplete="off" placeholder="密码" tabindex="1" datatype="*6-16" nullmsg="请输入旧密码!" errormsg="4~16个字符,区分大小写!">
  35. </td>
  36. </tr>
  37. <tr>
  38. <th class="text-r">新密码:</th>
  39. <td><input name="newpassword" id="newpassword" class="input-text" type="password" autocomplete="off" placeholder="设置密码" tabindex="2" datatype="*6-16" nullmsg="请输入您的新密码!" errormsg="4~16个字符,区分大小写!" >
  40. </td>
  41. </tr>
  42. <tr>
  43. <th class="text-r">再次输入新密码:</th>
  44. <td><input name="newpassword2" id="newpassword2" class="input-text" type="password" autocomplete="off" placeholder="确认新密码" tabindex="3" datatype="*" recheck="newpassword" nullmsg="请再输入一次新密码!" errormsg="您两次输入的新密码不一致!">
  45. </td>
  46. </tr>
  47. <tr>
  48. <th></th>
  49. <td>
  50. <button type="submit" class="btn btn-success radius" id="admin-password-save" name="admin-password-save"><i class="icon-ok"></i> 确定</button>
  51. </td>
  52. </tr>
  53. </tbody>
  54. </table>
  55. </form>
  56. </div>
  57. <script type="text/javascript" src="http://cdn.bootcss.com/jquery/2.1.3/jquery.min.js"></script>
  58. <script type="text/javascript" src="js/Validform_v5.3.2_min.js"></script>
  59. <script type="text/javascript" src="layer/layer.min.js"></script>
  60. <script type="text/javascript" src="js/H-ui.js"></script>
  61. <script type="text/javascript" src="js/H-ui.admin.js"></script>
  62. <script type="text/javascript">
  63. $(".Huiform").Validform();
  64. </script>
  65. <script>
  66. var _hmt = _hmt || [];
  67. (function() {
  68. var hm = document.createElement("script");
  69. hm.src = "//hm.baidu.com/hm.js?080836300300be57b7f34f4b3e97d911";
  70. var s = document.getElementsByTagName("script")[0];
  71. s.parentNode.insertBefore(hm, s);
  72. })();
  73. var _bdhmProtocol = (("https:" == document.location.protocol) ? " https://" : " http://");
  74. document.write(unescape("%3Cscript src='" + _bdhmProtocol + "hm.baidu.com/h.js%3F080836300300be57b7f34f4b3e97d911' type='text/javascript'%3E%3C/script%3E"));
  75. </script>
  76. </body>
  77. </html>