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

108 lines
4.6KB

  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 name="viewport" content="width=device-width, initial-scale=1" />
  5. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>" />
  6. <title><?php echo $cfg_webname;?>_申请友情链接</title>
  7. <link href="<?php echo $cfg_templets_skin; ?>/style/dedecms.css" rel="stylesheet" type="text/css" media="screen" />
  8. </head>
  9. <body class="flinkpage">
  10. <div class="header">
  11. <div class="top w960 center">
  12. <div class="title">
  13. <h1><a href="<?php echo $cfg_basehost;?>" title="<?php echo $cfg_webname;?>"><img src="<?php echo $cfg_templets_skin; ?>/images/logo.gif" alt=""/></a> </h1>
  14. </div><!-- /title -->
  15. </div><!-- /top -->
  16. </div><!-- /header -->
  17. <div class="w960 clear center mt1 cmt-box">
  18. <div class="sp-title">
  19. <h2>申请链接</h2>
  20. <span class="more">
  21. <a href="<?php echo "$cfg_phpurl/flink.php"; ?>">查看链接</a>
  22. </span>
  23. </div>
  24. <div class="formbox">
  25. <form name="form1" method="post" action="flink.php">
  26. <input type='hidden' name='dopost' value='save'>
  27. <table width="100%" border="0" cellspacing="1" cellpadding="3">
  28. <tr>
  29. <td height="25">网址:</td>
  30. <td><input name="url" type="text" id="url" value="http://" size="30" class="ipt-txt"></td>
  31. </tr>
  32. <tr>
  33. <td height="25">网站名称:</td>
  34. <td><input name="webname" type="text" id="webname" size="30" class="ipt-txt"></td>
  35. </tr>
  36. <tr>
  37. <td height="25">网站Logo:</td>
  38. <td><input name="logo" type="text" id="logo" size="30" class="ipt-txt">
  39. (88*31 gif或jpg)</td>
  40. </tr>
  41. <tr>
  42. <td height="25">网站简况:</td>
  43. <td> <textarea name="msg" cols="40" rows="4" id="msg" class="ipt-txt"></textarea></td>
  44. </tr>
  45. <tr>
  46. <td height="25">站长Email:</td>
  47. <td><input name="email" type="text" id="email" size="30" class="ipt-txt"></td>
  48. </tr>
  49. <tr>
  50. <td height="25">网站类型:</td>
  51. <td> <select name="typeid" id="typeid" >
  52. <?php
  53. $dsql->SetQuery("select * from #@__flinktype");
  54. $dsql->Execute();
  55. while($row=$dsql->GetObject())
  56. {
  57. echo " <option value='".$row->id."'>".$row->typename."</option>\r\n";
  58. }
  59. ?>
  60. </select> </td>
  61. </tr>
  62. <tr>
  63. <td height="25">验证码:</td>
  64. <td><table width="200" border="0" cellspacing="0" cellpadding="0">
  65. <tr>
  66. <td width="84"><input name="validate" type="text" id="vdcode2" size="10" class="ipt-txt" style="text-transform: uppercase;"></td>
  67. <td width="116"><img src='../plus/vdimgck.php' style="cursor:pointer" onclick="this.src=this.src+'?'" title="点击我更换图片" alt="点击我更换图片" /></td>
  68. </tr>
  69. </table></td>
  70. </tr>
  71. <tr>
  72. <td height="51">&nbsp;</td>
  73. <td><input type="submit" name="Submit" value=" 提 交 " class="btn-2">
  74.    
  75. <input type="reset" name="Submit" value=" 重 置 " class="btn-2"></td>
  76. </tr>
  77. </table>
  78. </form>
  79. </div>
  80. </div>
  81. <!-- //底部模板 -->
  82. <div class="footer w960 center mt1 clear">
  83. <!--
  84. 为了支持Dede商业的发展,请您保留织梦内容管理系统的链接信息.
  85. 我们对支持Dede商业发展的朋友表示真心的感谢!织梦因您更精彩!
  86. -->
  87. <div class="footer_left"></div>
  88. <div class="footer_body">
  89. <p class="powered">
  90. Powered by <a href="http://www.dedecms.com" title="DedeCMSV6内容管理系统--国内最专业的PHP网站管理系统,轻松建站的首选利器。" target="_blank"><strong>DedeCMS<?php echo $cfg_version; ?></strong></a> &copy; 2004-2020 <a href="http://www.desdev.cn/" target="_blank">DesDev</a> Inc.<br /><div class="copyright"><?php echo $cfg_powerby; ?>&nbsp;&nbsp;<?php echo $cfg_beian; ?></div></p>
  91. <!-- /powered -->
  92. </div>
  93. <div class="footer_right"></div>
  94. </div>
  95. </body>
  96. </html>