| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php if (!defined("IS_INITPHP")) exit("Access Denied!"); /* INITPHP Version 1.0 ,Create on 2017-12-13 16:49:28, compiled from /data/wwwroot/www.shadowsocks5.com/app/template/ss/index/code.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>Invite</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="table-responsive">
- <table class="table table-striped">
- <thead>
- <tr>
- <th>###</th>
- <th>邀请码</th>
- <th>状态</th>
- </tr>
- </thead>
- <tbody>
- <?php foreach ($code as $k=>$v) { ?>
- <tr>
- <td><?php echo $k;?></td>
- <td><?php echo $v['code'];?></td>
- <td>可用</td>
- </tr>
- <?php } ?>
- </tbody>
- </table>
- </div>
- </div>
- </div><!-- /.box -->
- </div> <!-- /.row -->
- </section><!-- /.content -->
- </aside><!-- /.right-side -->
- <?php include('/data/wwwroot/www.shadowsocks5.com/app/data/template_c/ss/index/user_foot.tpl.php'); ?>
|