1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
<?php include('_init.php'); ?> <!DOCTYPE html> <html lang="en"> <head> <? include('_head.php'); ?> <link href="css/style_k.css?v=<?= time(); ?>" type="text/css" rel="stylesheet">
<style> .fancybox-skin { background-color: transparent !important; }
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { .read_more_center { margin-left: -55px; } } </style> </head>
<body>
<? include('_header.php') ?> <? include('_dialog.php') ?> <header style="height: auto; margin-top: 100px;background: none;"> <div class="container tc" style="">
<img src="<?= $site_info["url"] ?>img/index_1.png" style="">
<p style="color: #000; font-size: 18px;"><br>請下載MusicCircle Mobile App</p>
<div class="BeginsBTN" style="margin-top: 20px; position: relative; z-index: 9; "> <div style="width: 230px; text-align: center; margin: 0 auto;"> <img src="<?= $site_info["url"] ?>img/user_type.png" style="width: 100%;">
<?php if(PRODUCTION == 1){ ?> <div id="ios_user_container" style="width: 75px; height: 75px; position: relative; top: -140px;" onclick="location.href='https://itunes.apple.com/hk/app/musiccircle-learn-it-smart/id1250435797?mt=8';"></div> <?php }else{ ?> <div id="ios_user_container" style="width: 75px; height: 75px; position: relative; top: -140px;" onclick="location.href='index.php?from=index_user';"></div> <?php } ?>
<div id="android_user_container" style="width: 75px; height: 75px; position: relative; top: -210px; left: 150px;" onclick="location.href='https://play.google.com/store/apps/details?id=com.musiccircle&hl=zh-TW';"></div>
</div>
<div style="color: #000; font-size: 18px; margin-top: -130px; margin-bottom: 30px;">繼續桌面版: <a href="<?=$site_info["url"]."index.php?request_pc=1"?>"><?=$site_info["url"]?></a> </div> </div> </div> </header>
<?php /*if (empty($_SESSION["cmsloginid"])) { */?><!-- <div class="container tc" style="position: fixed; bottom: 0;"> <img src="<?/*= $site_info["url"] */?>img/index_2.jpg" style="width: 100%;"> </div> --><?php /*} */?>
<script src="js/jquery.min.js"></script> <? include('_footer.php') ?>
</body> </html>
|