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

138 lines
5.8KB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="<?php echo $cfg_soft_lang; ?>">
  5. <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
  6. <title>会员中心-<?php echo $cfg_webname; ?></title>
  7. <script src="<?php echo $cfg_cmsurl; ?>/static/web/js/jquery.min.js"></script>
  8. <link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/bootstrap.min.css">
  9. <link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/font/css/font-awesome.min.css">
  10. <link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/style.css">
  11. <link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/member.css">
  12. <style>
  13. .member a.btn {
  14. color: white;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <?php include(DEDEMEMBER."/templets/top_login.htm"); ?>
  20. <main class="member">
  21. <div class="pannel">
  22. <div class="container">
  23. <div class="row">
  24. <?php
  25. $_menu_home = true;
  26. ?>
  27. <?php include(DEDEMEMBER."/templets/menu.htm"); ?>
  28. <div class="pannel-main col-md-9 mt-3 mb-3">
  29. <div class="pannel-main-container">
  30. <div class="media-body row">
  31. <div class="col-12 col-md-3 text-center">
  32. <a href="<?php echo $cfg_memberurl;?>/"><img class="member-logo" src="<?php echo $cfg_ml->fields['face']; ?>" class="mr-3" alt="<?php echo $cfg_ml->M_MbType; ?>"></a>
  33. <div class="member-type"><span class="badge badge-success"><?php echo $cfg_ml->M_MbType; ?></span></div>
  34. </div>
  35. <div class="col-12 col-md-9 title">
  36. <h3 class="mt-0 mb-3"><?php echo $cfg_ml->M_LoginID; ?></h3>
  37. <p>积分:<span class="text-danger"><?php echo $cfg_ml->M_Scores;?></span> 金币:<span class="text-danger"><?php echo $cfg_ml->M_Money;?></span> <a href="<?php echo $cfg_memberurl;?>/buy.php" class="btn btn-danger btn-sm">充值</a></p>
  38. </div>
  39. </div>
  40. </div>
  41. <div class="pannel-main-container mt-3">
  42. <div class="media-body py-3">
  43. <ul class="row row-cols-3 row-cols-sm-4 row-cols-lg-6 row-cols-xl-8 list-unstyled list">
  44. <li class="col" data-tags="alarm clock">
  45. <a class="d-block text-dark text-decoration-none" href="<?php echo $cfg_memberurl;?>/content_list.php?channelid=1">
  46. <div class="p-3 py-4 mb-2 bg-light text-center rounded">
  47. <i class="fa fa-list" style="font-size:2em"></i>
  48. </div>
  49. <div class="name text-muted text-decoration-none text-center pt-1">
  50. 内容管理
  51. </div>
  52. </a>
  53. </li>
  54. <li class="col" data-tags="alarm clock">
  55. <a class="d-block text-dark text-decoration-none"
  56. href="<?php echo $cfg_memberurl;?>/pm.php?folder=inbox">
  57. <div class="p-3 py-4 mb-2 bg-light text-center rounded">
  58. <i class="fa fa-commenting-o" style="font-size:2em"></i>
  59. </div>
  60. <div class="name text-muted text-decoration-none text-center pt-1">
  61. 消息管理
  62. </div>
  63. </a>
  64. </li>
  65. <li class="col" data-tags="alarm clock">
  66. <a class="d-block text-dark text-decoration-none"
  67. href="<?php echo $cfg_memberurl;?>/buy.php">
  68. <div class="p-3 py-4 mb-2 bg-light text-center rounded">
  69. <i class="fa fa-credit-card-alt" style="font-size:2em"></i>
  70. </div>
  71. <div class="name text-muted text-decoration-none text-center pt-1">
  72. 钱包积分
  73. </div>
  74. </a>
  75. </li>
  76. <li class="col" data-tags="space align distribute">
  77. <a class="d-block text-dark text-decoration-none"
  78. href="<?php echo $cfg_memberurl;?>/shops_orders.php">
  79. <div class="p-3 py-4 mb-2 bg-light text-center rounded">
  80. <i class="fa fa-shopping-cart" style="font-size:2em"></i>
  81. </div>
  82. <div class="name text-muted text-decoration-none text-center pt-1">
  83. 订单管理
  84. </div>
  85. </a>
  86. </li>
  87. <li class="col" data-tags="space align distribute">
  88. <a class="d-block text-dark text-decoration-none"
  89. href="<?php echo $cfg_memberurl;?>/mystow.php">
  90. <div class="p-3 py-4 mb-2 bg-light text-center rounded">
  91. <i class="fa fa-star" style="font-size:2em"></i>
  92. </div>
  93. <div class="name text-muted text-decoration-none text-center pt-1">
  94. 我的收藏
  95. </div>
  96. </a>
  97. </li>
  98. <li class="col" data-tags="space align distribute">
  99. <a class="d-block text-dark text-decoration-none"
  100. href="<?php echo $cfg_memberurl;?>/edit_baseinfo.php">
  101. <div class="p-3 py-4 mb-2 bg-light text-center rounded">
  102. <i class="fa fa-cog" style="font-size:2em"></i>
  103. </div>
  104. <div class="name text-muted text-decoration-none text-center pt-1">
  105. 账号安全
  106. </div>
  107. </a>
  108. </li>
  109. </ul>
  110. </div>
  111. </div>
  112. <div class="pannel-main-container mt-3">
  113. <div class="media-body row">
  114. <div class="col-12 py-3">
  115. <h5>最新内容</h5>
  116. <div class="card ddcard">
  117. <ul class="list-group list-group-flush">
  118. <?php
  119. foreach ($archives as $archive)
  120. {
  121. ?>
  122. <li><a href="<?php echo $archive['htmlurl']; ?>" title="<?php echo $archive['title']; ?>"><?php echo $archive['title']; ?></a></li>
  123. <?php
  124. }
  125. ?>
  126. </ul>
  127. </div>
  128. </div>
  129. </div>
  130. </div>
  131. </div>
  132. </div>
  133. </div>
  134. </div>
  135. </main>
  136. <?php include(DEDEMEMBER."/templets/footer.htm"); ?>
  137. </body>
  138. </html>