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

48 lines
1.9KB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
  6. <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
  7. <title>推荐<?php echo $title;?>-<?php echo $cfg_webname;?></title>
  8. <link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/font/css/font-awesome.min.css">
  9. <link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/css/bootstrap.min.css">
  10. <link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/css/style.css">
  11. <script src="<?php echo $cfg_cmsurl;?>/static/web/js/jquery.min.js"></script>
  12. </head>
  13. <body>
  14. <?php obtaintheme('top.htm');?>
  15. <main class="container py-3">
  16. <div class="row">
  17. <div class="col-md-12">
  18. <nav class="navbar navbar-expand-lg p-0">
  19. <ul class="breadcrumb mr-auto">
  20. <li class="breadcrumb-item">推荐:<?php echo $title;?></li>
  21. </ul>
  22. </nav>
  23. <form name="form1" method="post" action="recommend.php">
  24. <input type="hidden" name="arcurl" value="<?php echo $arcurl;?>">
  25. <input type="hidden" name="action" value="send">
  26. <input type="hidden" name="arcID" value="<?php echo $aid;?>">
  27. <table class="table mb-0">
  28. <tr>
  29. <td width="160">好友邮箱:</td>
  30. <td><input name="email" type="text" class="form-control" id="email"></td>
  31. </tr>
  32. <tr>
  33. <td>您的留言:</td>
  34. <td>
  35. <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>
  36. </td>
  37. </tr>
  38. <tr>
  39. <td colspan="2" align="center"><button type="submit" class="btn btn-success btn-sm">发送</button></td>
  40. </tr>
  41. </table>
  42. </form>
  43. </div>
  44. </div>
  45. </main>
  46. <?php obtaintheme('foot.htm');?>
  47. </body>
  48. </html>