| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <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.0, maximum-scale=1.0, user-scalable=0"/>
- <meta name="description" content="网站描述">
- <meta name="keywords" content="网站关键字">
- <meta content="yes" name="apple-mobile-web-app-capable">
- <meta content="yes" name="apple-touch-fullscreen">
- <meta content="telephone=no,email=no" name="format-detection">
- <link rel="apple-touch-icon" href="favicon.png">
- <link rel="Shortcut Icon" href="favicon.png" type="image/x-icon">
- <link rel="stylesheet" type="text/css" href="/static/css/reset.min.css">
- <link rel="stylesheet" type="text/css" href="/static/css/layout.css">
- <title>扫码入群</title>
- <script>
- var deviceWidth = document.documentElement.clientWidth;
- if (deviceWidth > 750) {
- deviceWidth = 750;
- }
- document.documentElement.style.fontSize = document.documentElement.clientWidth / 7.5 + 'px';
- </script>
- </head>
- <body>
- <?php if ($group) : ?>
- <div class="page3">
- <div class="photo-wrap">
- <div class="photo top-logo">
- <img src="<?= $group['group_logo'] ?>">
- </div>
- <div class="username"><?= $group['group_name'] ?></div>
- </div>
- <div class="ewm">
- <img src="<?= $group['group_qrcode'] ?>">
- </div>
- </div>
- <?php else : ?>
- <h1>敬请期待</h1>
- <?php endif; ?>
- </body>
- </html>
|