| 12345678910111213141516171819202122232425262728293031 |
- <?php if (!defined("IS_INITPHP")) exit("Access Denied!"); /* INITPHP Version 1.0 ,Create on 2017-12-12 10:55:27, compiled from /data/wwwroot/www.shadowsocks5.com/app/template/ss/index/myinfo.html */ ?>
- <?php include('/data/wwwroot/www.shadowsocks5.com/app/data/template_c/ss/index/user_top.tpl.php'); ?>
- <aside class="right-side">
- <!-- Content Header (Page header) -->
- <section class="content-header">
- <h1>
- 用户中心
- <small>User Panel</small>
- </h1>
- </section>
- <!-- Main content -->
- <section class="content">
- <div class="row">
- <!-- left column -->
- <div class="col-md-6">
- <!-- general form elements -->
- <div class="box box-primary">
- <div class="box-header">
- <h3 class="box-title">我的信息</h3>
- </div><!-- /.box-header -->
- <div class="box-body">
- <p>用户名: <?php echo $userinfo['user_name'];?></p>
- <p>邮箱: <?php echo $userinfo['email'];?></p>
- <p> 套餐: <span class="label label-info"> <?php echo $userinfo['plan'];?> </span> </p>
- <p> 账户余额: <?php echo number_format($userinfo['money']) ?>元 <a class="btn btn-info btn-sm" href="/user/pay">充值</a></p>
- </div><!-- /.box -->
- </div>
- </div>
- </section><!-- /.content -->
- </aside><!-- /.right-side -->
- <?php include('/data/wwwroot/www.shadowsocks5.com/app/data/template_c/ss/index/user_foot.tpl.php'); ?>
|