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

107 lines
4.5KB

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