|
1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
- <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
- <title>推荐<?php echo $title;?>-<?php echo $cfg_webname;?></title>
- <link rel="stylesheet" href="/static/web/css/font-awesome.min.css">
- <link rel="stylesheet" href="/static/web/css/bootstrap.min.css">
- <link rel="stylesheet" href="/static/web/css/style.css">
- </head>
- <body>
- <?php obtaintheme('top.htm');?>
- <main class="container py-3">
- <nav aria-label="breadcrumb">
- <ol class="breadcrumb">
- <li class="breadcrumb-item"><a href="/">首页</a></li>
- <li class="breadcrumb-item">推荐<?php echo $title;?></li>
- </ol>
- </nav>
- <form name="form1" action="<?php echo $cfg_phpurl?>/recommend.php" method="post">
- <input type="hidden" name="arcurl" value="<?php echo $arcurl;?>">
- <input type="hidden" name="action" value="send">
- <input type="hidden" name="arcID" value="<?php echo $aid;?>">
- <table class="table mb-0">
- <tr>
- <td width="160">好友邮箱:</td>
- <td><input name="email" type="text" autocomplete="off" id="email" class="form-control"></td>
- </tr>
- <tr>
- <td>您的留言:</td>
- <td>
- <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>
- </td>
- </tr>
- <tr>
- <td colspan="2" align="center"><button type="submit" class="btn btn-success btn-sm">发送</button></td>
- </tr>
- </table>
- </form>
- </main>
- <?php obtaintheme('foot.htm');?>
- </body>
- </html>
|