国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

41 řádky
1.6KB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
  6. <title>推荐<?php echo $title;?>-<?php echo $cfg_webname;?></title>
  7. <link rel="stylesheet" href="/static/web/css/font-awesome.min.css">
  8. <link rel="stylesheet" href="/static/web/css/bootstrap.min.css">
  9. <link rel="stylesheet" href="/static/web/css/style.css">
  10. </head>
  11. <body>
  12. <?php ThemeInclude('top.htm');?>
  13. <main class="container py-3">
  14. <ol class="breadcrumb">
  15. <li class="breadcrumb-item"><a href="/">首页</a></li>
  16. <li class="breadcrumb-item">推荐<?php echo $title;?></li>
  17. </ol>
  18. <form name="form1" action="<?php echo $cfg_phpurl?>/recommend.php" method="post">
  19. <input type="hidden" name="arcurl" value="<?php echo $arcurl;?>">
  20. <input type="hidden" name="action" value="send">
  21. <input type="hidden" name="arcID" value="<?php echo $aid;?>">
  22. <table class="table mb-0">
  23. <tr>
  24. <td width="160">好友邮箱</td>
  25. <td><input name="email" type="text" autocomplete="off" id="email" class="form-control"></td>
  26. </tr>
  27. <tr>
  28. <td>您的留言</td>
  29. <td>
  30. <textarea name="msg" id="msg" class="form-control">我在<?php echo $cfg_webname;?>发现一篇很好的文档:<?php echo $title;?>,网址:<?php $arcUrl = ($cfg_multi_site != 'Y' ? $cfg_basehost : '').$arcurl; echo $arcUrl;?></textarea>
  31. </td>
  32. </tr>
  33. <tr>
  34. <td colspan="2" align="center"><button type="submit" class="btn btn-success btn-sm">发送</button></td>
  35. </tr>
  36. </table>
  37. </form>
  38. </main>
  39. <?php ThemeInclude('foot.htm');?>
  40. </body>
  41. </html>