国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

71 lines
3.1KB

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
  5. <title>通行证设置</title>
  6. <link href='css/base.css' rel='stylesheet' type='text/css'>
  7. </head>
  8. <body background='images/allbg.gif' leftmargin='8' topmargin='8'>
  9. <table width="98%" border="0" cellpadding="2" cellspacing="1" bgcolor="#D6D6D6" align="center">
  10. <tr>
  11. <td height="23" background="images/tbg.gif"> &nbsp;<b>通行证设置:</b> </td>
  12. </tr>
  13. <tr>
  14. <td bgcolor="#FFFFFF">
  15. <table width="100%" border="0" cellspacing="1" cellpadding="1">
  16. <form action="sys_passport.php" method="post" name="form1">
  17. <input type="hidden" name="dopost" value="save">
  18. <tr align="center" bgcolor="#E6F7CA" height="25">
  19. <td width="25%">参数说明</td>
  20. <td width="75%">参数值</td>
  21. </tr>
  22. <tr align="center" height="25" bgcolor="#F4FCDC">
  23. <td bgcolor="#FFFFFF"> 是否使用通行证: </td>
  24. <td align="left" bgcolor="#FFFFFF">
  25. <input type='radio' class='np' name='edit___cfg_pp_need' value='Y'<?php if($cfg_pp_need=='Y') echo " checked";?>>
  26. <input type='radio' class='np' name='edit___cfg_pp_need' value='N'<?php if($cfg_pp_need=='N') echo " checked";?>>
  27. 否 </td>
  28. </tr>
  29. <tr align="center" height="25" bgcolor="#F4FCDC">
  30. <td> 通行证加密码: </td>
  31. <td align="left">
  32. <?php
  33. 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')));
  34. ?>
  35. <input type='text' name='edit___cfg_pp_encode' id='edit___cfg_pp_encode' style='width:80%' value='<?php echo $cfg_pp_encode?>'>
  36. </td>
  37. </tr>
  38. <tr align="center" height="25" bgcolor="#FFFFFF">
  39. <td> 登录通行证网址: </td>
  40. <td align="left">
  41. <input type='text' name='edit___cfg_pp_login' id='edit___cfg_pp_login' style='width:80%' value='<?php echo $cfg_pp_login?>'></td>
  42. </tr>
  43. <tr align="center" height="25" bgcolor="#F4FCDC">
  44. <td>退出通行证网址: </td>
  45. <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>
  46. </tr>
  47. <tr align="center" height="25" bgcolor="#FFFFFF">
  48. <td>注册通行证帐号网址:</td>
  49. <td align="left">
  50. <input type='text' name='edit___cfg_pp_reg' id='edit___cfg_pp_reg' style='width:80%' value='<?php echo $cfg_pp_reg?>'>
  51. </td>
  52. </tr>
  53. <tr bgcolor="#F3FFDD">
  54. <td height="50" colspan="2"> <table width="98%" border="0" cellspacing="1" cellpadding="1">
  55. <tr>
  56. <td width="11%">&nbsp;</td>
  57. <td width="11%"><input name="imageField" type="image" src="images/button_ok.gif" width="60" height="22" border="0" class="np"></td>
  58. <td width="78%"><img src="images/button_reset.gif" width="60" height="22" style="cursor:pointer" onClick="document.form1.reset()"></td>
  59. </tr>
  60. </table></td>
  61. </tr>
  62. </form>
  63. </table>
  64. </td>
  65. </tr>
  66. </table>
  67. <center>
  68. </center>
  69. </body>
  70. </html>