国内流行的内容管理系统(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
2.8KB

  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 rel="stylesheet" href="../static/web/css/admin.css">
  7. </head>
  8. <body>
  9. <table width="98%" cellpadding="2" cellspacing="1" align="center">
  10. <tr>
  11. <td height="26" background="../static/web/img/tbg.gif">通行证设置:</td>
  12. </tr>
  13. <tr>
  14. <td>
  15. <table width="100%" 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="26">
  19. <td width="25%">参数说明</td>
  20. <td width="75%">参数值</td>
  21. </tr>
  22. <tr height="26" align="center" bgcolor="#F4FCDC">
  23. <td> 是否使用通行证:</td>
  24. <td align="left">
  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 height="26" align="center" 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 height="26" align="center">
  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 height="26" align="center" 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 height="26" align="center">
  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>
  54. <td height="50" colspan="2"> <table width="98%" cellspacing="1" cellpadding="1">
  55. <tr>
  56. <td width="11%"></td>
  57. <td width="11%"><input name="imageField" type="image" src="../static/web/img/button_ok.gif" class="np"></td>
  58. <td width="78%"><img src="../static/web/img/button_reset.gif" width="60" height="26" 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>