2026-05-29 19:54:56 +08:00

74 lines
3.2 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE HTML>
<?php
$code=Yii::$app->request->get('code');
$url =Yii::$app->urlManager->hostInfo.Yii::$app->getHomeUrl() . "index.html?code=" . $code;
?>
<html>
<head>
<title>超级农场</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no,minimal-ui">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="format-detection" content="telephone=no">
<link href="<?= Yii::$app->getHomeUrl() ?>share-css/bootstrap.min.css" rel="stylesheet"/>
<link href="<?= Yii::$app->getHomeUrl() ?>share-css/style.css" rel="stylesheet"/>
<script src="<?= Yii::$app->getHomeUrl() ?>js/jquery-2.0.3.min.js"></script>
<style>
.container {
max-width: 1050px;
}
</style>
</head>
<body>
<div class="container clear">
<div class="main">
<div class="message message-info">
温馨提示:<br>
1.通过您的推荐链接/二维码/推荐码注册的会员,将成为您的推广会员。<br>
</div>
<div class="uc-head uc-head-border">推广链接/二维码</div>
<div class="uc-pop clear">
<div class="uc-pop-qrcode">
<span class="color-1">超级农场推广链接</span>
<div id="qrcode-gy" class="qrcode"></div>
<cite>
<b class="color-1"><?= $url?></b>
</cite>
</div>
</div>
<div class="message message-help">
使用说明:<br>
<p>1.复制上面的推广链接或二维码,并发送给好友。</p>
<p>2.好友通过链接或者扫码进入注册页面进行注册,将成为您的推广会员。</p>
<span class="color-1">关于微信推广连接的补充说明:</span><br>
<p>1.进入微信客户端</p>
<p>2.点击底部主菜单[发现]-&gt;[扫一扫],扫描二维护码即可打开页面。(当然你也可以直接复制连接发送给您的好友)</p>
<p>3.进入页面后点击界面右上角的菜单按钮弹出菜单面板后可分享页面给好友朋友圈以及QQ空间。</p>
</div>
<div class="uc-head uc-head-border">推广码</div>
<div class="form-group">
<div class="form-group-addon">我的推广码</div>
<div class="form-group-addon no-left-border form-group-addon-disabled stretch" id="FreezeMoney"><?= $code ?></div>
</div>
<div class="text-warning"></div>
<div class="message message-help">
温馨提示:<br>
<p>1.复制上面的推广码,并发送给好友。</p>
<p>2.好友在"超级农场"注册页面填写推广码完成注册,将成为您的推广会员。</p>
</div>
<br>
<script src="<?= Yii::$app->getHomeUrl() ?>js/jquery.qrcode.min.js"></script>
<script type="text/javascript">
//$(function () {
$('#qrcode-gy').qrcode("<?= $url?>");
// })
</script>
</div>
</div>
</body>
</html>