123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <%@ page contentType="text/html;charset=UTF-8"%>
- <div class="theme-popover" style="width: 490px;height: 302px;position:absolute;">
- <div class="theme-poptit">
- <div class="popTitle">
- <h4>修改密码</h4>
- </div>
- <!-- <div class="close">
- <a href="#" title="关闭" onclick="guanbipop()" >×</a>
- </div> -->
- </div>
- <!-- 旧密码:<input type="text" class="form-control"><br/>
- 新密码:<input type="text" class="form-control"><br/>
- 确认密码:<input type="text" class="form-control"><br/> -->
- <form action="" method="post" style="padding:10px;text-align:center;">
- <table class="changePW_table">
- <tr>
- <td>旧密码:</td>
- <td><input type="password" class="form-control" id="oldPW"></td>
- <td><span class="hint" id="oldPW_hint"></span> </td>
- </tr>
- <tr>
- <td>新密码:</td>
- <td><input type="password" class="form-control" id="newPW"></td>
- <td><span class="hint" id="newPW_hint"></span> </td>
- </tr>
- <tr>
- <td>确认密码:</td>
- <td><input type="password" class="form-control" id="confirmPW"></td>
- <td><span class="hint" id="confirmPW_hint"></span> </td>
- </tr>
- </table>
- <div class="btnGroup">
- <a class="btn btn-default btn-sm" href="#" onclick="" id="btn1">
- <i class="glyphicon glyphicon-ok"></i>提交
- </a>
- <a class="btn btn-default btn-sm" href="#" onclick="" id="btn2">
- <i class="glyphicon glyphicon-remove" ></i>取消
- </a>
- </div>
- <span id="all_hint" class="hint"></span>
- </form>
- </div>
- <div class="theme-popover-mask"></div>
|