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

44 lines
1.8KB

  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="<?php echo $cfg_cmsurl;?>/static/web/css/bootstrap.min.css">
  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/style.css">
  10. </head>
  11. <body>
  12. <?php pasterTempletDiy('top.htm');?>
  13. <div class="container py-3">
  14. <div class="row">
  15. <div class="col-md-12">
  16. <h4 class="mb-3">推荐:<?php echo $title;?></h4>
  17. <form name="form1" method="post" action="recommend.php">
  18. <input type="hidden" name="arcurl" value="<?php echo $arcurl;?>">
  19. <input type="hidden" name="action" value="send">
  20. <input type="hidden" name="arcID" value="<?php echo $aid;?>">
  21. <table width="100%" class="table" cellspacing="2" cellpadding="1">
  22. <tr>
  23. <td align="right" width="160">您好友的邮箱:</td>
  24. <td align="left"><input name="email" type="text" class="form-control" id="email" value="@"></td>
  25. </tr>
  26. <tr>
  27. <td align="right">您的留言:</td>
  28. <td align="left">
  29. <textarea name="msg" cols="80" rows="16" id="msg" class="form-control">
  30. 我在 [<?php echo $cfg_webname;?>] 发现了一个很好的东东,文档的名称是:<?php echo $title;?>,网址是:<?php $arcUrl = ($cfg_multi_site != 'Y' ? $cfg_basehost : '').$arcurl; echo $arcUrl;?>
  31. </textarea>
  32. </td>
  33. </tr>
  34. <tr>
  35. <td colspan="2" align="center"><button type="submit" class="btn btn-success">发送</button></td>
  36. </tr>
  37. </table>
  38. </form>
  39. </div>
  40. </div>
  41. </div>
  42. <?php pasterTempletDiy('foot.htm');?>
  43. </body>
  44. </html>