| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <include file="Public:header" />
- <div id="main-content">
- <div id="top-alert" class="fixed alert alert-error" style="display: none;">
- <button class="close fixed" style="margin-top: 4px;">×</button>
- <div class="alert-content">警告内容</div>
- </div>
- <div id="main" class="main">
- <div class="main-title-h">
- <span class="h1-title">修改密码</span>
- </div>
- <div class="tab-wrap">
- <div class="tab-content">
- <form id="form" action="{:U('User/setpwd')}" method="post" class="form-horizontal">
- <div id="tab" class="tab-pane in tab">
- <div class="form-item cf">
- <table>
- <tr class="controls">
- <td class="item-label">旧密码 :</td>
- <td><input type="password" class="form-control" name="oldpassword" value=""></td>
- <td class="item-note"></td>
- </tr>
- <tr class="controls">
- <td class="item-label">新密码 :</td>
- <td><input type="password" class="form-control" name="newpassword" value=""></td>
- <td class="item-note"></td>
- </tr>
- <tr class="controls">
- <td class="item-label">确认密码 :</td>
- <td><input type="password" class="form-control" name="repassword" value=""></td>
- <td class="item-note"></td>
- </tr>
- <tr class="controls">
- <td class="item-label"></td>
- <td>
- <div class="form-item cf">
- <button class= "btn submit-btn ajax-post" id="submit" type="submit" target-form="form-horizontal">确
- 定</button>
- <a class="btn btn-return" href="{$Think.server.HTTP_REFERER}">返 回</a>
- <notempty name="data.id"> <input type="hidden" name="id" value="{$data.id}" /> </notempty>
- </div>
- </td>
- </tr>
- </table>
- </div>
- </div>
- </form>
- <script type="text/javascript">
- //提交表单
- $('#submit').click(function() {
- $('#form').submit();
- });
- </script>
- </div>
- </div>
- </div>
- </div>
- <script type="text/javascript">
- $(function() {
- //主导航高亮
- $('.index-box').addClass('current');
- //边导航高亮
- $('.index-index').addClass('current');
- });
- </script>
- <include file="Public:footer" />
|