|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
- <title>通行证设置</title>
- <link rel="stylesheet" href="../static/web/css/admin.css">
- </head>
- <body>
- <table width="98%" cellpadding="2" cellspacing="1" align="center">
- <tr>
- <td height="26" background="../static/web/img/tbg.gif">通行证设置:</td>
- </tr>
- <tr>
- <td>
- <table width="100%" cellspacing="1" cellpadding="1">
- <form action="sys_passport.php" method="post" name="form1">
- <input type="hidden" name="dopost" value="save">
- <tr align="center" bgcolor="#E6F7CA" height="26">
- <td width="25%">参数说明</td>
- <td width="75%">参数值</td>
- </tr>
- <tr height="26" align="center" bgcolor="#F4FCDC">
- <td> 是否使用通行证:</td>
- <td align="left">
- <input type='radio' class='np' name='edit___cfg_pp_need' value='Y'<?php if($cfg_pp_need=='Y') echo " checked"; ?>>
- 是
- <input type='radio' class='np' name='edit___cfg_pp_need' value='N'<?php if($cfg_pp_need=='N') echo " checked"; ?>>
- 否</td>
- </tr>
- <tr height="26" align="center" bgcolor="#F4FCDC">
- <td> 通行证加密码:</td>
- <td align="left">
- <?php
- if($cfg_pp_encode=='') $cfg_pp_encode = chr(mt_rand(ord('A'),ord('Z'))).chr(mt_rand(ord('a'),ord('z'))).chr(mt_rand(ord('A'),ord('Z'))).chr(mt_rand(ord('A'),ord('Z'))).chr(mt_rand(ord('a'),ord('z'))).mt_rand(1000,9999).chr(mt_rand(ord('A'),ord('Z')));
- ?>
- <input type='text' name='edit___cfg_pp_encode' id='edit___cfg_pp_encode' style='width:80%' value='<?php echo $cfg_pp_encode?>'>
- </td>
- </tr>
- <tr height="26" align="center">
- <td> 登录通行证网址:</td>
- <td align="left">
- <input type='text' name='edit___cfg_pp_login' id='edit___cfg_pp_login' style='width:80%' value='<?php echo $cfg_pp_login?>'></td>
- </tr>
- <tr height="26" align="center" bgcolor="#F4FCDC">
- <td>退出通行证网址:</td>
- <td align="left"><input name="edit___cfg_pp_exit" type='text' id="edit___cfg_pp_exit" style='width:80%' value='<?php echo $cfg_pp_exit?>'></td>
- </tr>
- <tr height="26" align="center">
- <td>注册通行证帐号网址:</td>
- <td align="left">
- <input type='text' name='edit___cfg_pp_reg' id='edit___cfg_pp_reg' style='width:80%' value='<?php echo $cfg_pp_reg?>'>
- </td>
- </tr>
- <tr>
- <td height="50" colspan="2"> <table width="98%" cellspacing="1" cellpadding="1">
- <tr>
- <td width="11%"></td>
- <td width="11%"><input name="imageField" type="image" src="../static/web/img/button_ok.gif" class="np"></td>
- <td width="78%"><img src="../static/web/img/button_reset.gif" width="60" height="26" style="cursor:pointer" onClick="document.form1.reset()"></td>
- </tr>
- </table></td>
- </tr>
- </form>
- </table>
- </td>
- </tr>
- </table>
- <center>
- </center>
- </body>
- </html>
|