123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <?php
- defined('IN_ADMIN') or exit('No permission resources.');
- $show_validator = true;include $this->admin_tpl('header');?>
- <script type="text/javascript">
- $(document).ready(function() {
- $.formValidator.initConfig({autotip:true,formid:"myform",onerror:function(msg){}});
- $("#old_password").formValidator({empty:true,onshow:"<?php echo L('not_change_the_password_please_leave_a_blank')?>",onfocus:"<?php echo L('password').L('between_6_to_20')?>",oncorrect:"<?php echo L('old_password_right')?>"}).inputValidator({min:6,max:20,onerror:"<?php echo L('password').L('between_6_to_20')?>"}).ajaxValidator({
- type : "get",
- url : "",
- data :"m=admin&c=admin_manage&a=public_password_ajx",
- datatype : "html",
- async:'false',
- success : function(data){
- if( data == "1" )
- {
- return true;
- }
- else
- {
- return false;
- }
- },
- buttons: $("#dosubmit"),
- onerror : "<?php echo L('old_password_wrong')?>",
- onwait : "<?php echo L('connecting_please_wait')?>"
- });
- $("#new_password").formValidator({empty:true,onshow:"<?php echo L('not_change_the_password_please_leave_a_blank')?>",onfocus:"<?php echo L('password').L('between_6_to_20')?>"}).inputValidator({min:6,max:20,onerror:"<?php echo L('password').L('between_6_to_20')?>"});
- $("#new_pwdconfirm").formValidator({empty:true,onshow:"<?php echo L('not_change_the_password_please_leave_a_blank')?>",onfocus:"<?php echo L('input').L('passwords_not_match')?>",oncorrect:"<?php echo L('passwords_match')?>"}).compareValidator({desid:"new_password",operateor:"=",onerror:"<?php echo L('input').L('passwords_not_match')?>"});
- })
- </script>
- <div class="pad_10">
- <div class="common-form">
- <form name="myform" action="?m=admin&c=admin_manage&a=public_edit_pwd" method="post" id="myform">
- <input type="hidden" name="info[userid]" value="<?php echo $userid?>"></input>
- <input type="hidden" name="info[username]" value="<?php echo $username?>"></input>
- <table width="100%" class="table_form contentWrap">
- <tr>
- <td width="80"><?php echo L('username')?></td>
- <td><?php echo $username?> (<?php echo L('realname')?> <?php echo $realname?>)</td>
- </tr>
- <tr>
- <td><?php echo L('email')?></td>
- <td>
- <?php echo $email?>
- </td>
- </tr>
- <tr>
- <td><?php echo L('old_password')?></td>
- <td><input type="password" name="old_password" id="old_password" class="input-text"></input></td>
- </tr>
- <tr>
- <td><?php echo L('new_password')?></td>
- <td><input type="password" name="new_password" id="new_password" class="input-text"></input></td>
- </tr>
- <tr>
- <td><?php echo L('new_pwdconfirm')?></td>
- <td><input type="password" name="new_pwdconfirm" id="new_pwdconfirm" class="input-text"></input></td>
- </tr>
- </table>
- <div class="bk15"></div>
- <input name="dosubmit" type="submit" value="<?php echo L('submit')?>" class="button" id="dosubmit">
- </form>
- </div>
- </div>
- </body>
- </html>
|