-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfresh_manage.php
102 lines (101 loc) · 3.26 KB
/
fresh_manage.php
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<?php
include "class/account.class.php";
include "class/PatternCheck.class.php";
include "class/redirect.class.php";
include "class/config_var.class.php";
logcheck();
?>
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="css/signin.css">
</head>
<body class="fix-top">
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target=".navbar-responsive-collapse">
<span class="sr-only">Toggle Navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="##" class="navbar-brand">扬华SMS</a>
</div>
<div class="collapse navbar-collapse navbar-responsive-collapse">
<ul class="nav navbar-nav">
<li><a href="console.php?id=<?php echo $id; ?>">控制台</a></li>
<li><a href="notice_manage.html">通知</a></li>
<li class="active"><a href="fresh_manage.html">招新管理</a></li>
<li><a href="javascript:location.reload();">成员管理</a></li>
<li><a href="send_log.html">历史记录</a></li>
<li><a href="profile.php"><span class="glyphicon glyphicon-user" aria-hidden="true"></span><?php echo $A->getusername(); ?></a></li>
<li><a href="logout.php">退出登录</a></li>
</ul>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-3 col-lg-2">
<div class="list-group">
<a href="fresh_manage.html" class="list-group-item active">概述</a>
<a href="fresh_contacts.html" class="list-group-item">通讯录管理</a>
<a href="fresh_send.html" class="list-group-item">信息发送</a>
</div>
</div>
<div class="col-md-9 col-lg-10">
<div class="panel panel-default">
<div class="panel-heading">
<span class="glyphicon glyphicon-stats" aria-hidden="true"></span>
<label>使用统计</label>
</div>
<table class="table table-responsive">
<thead>
<tr>
<th>今日使用</th>
<th>本月使用</th>
</tr>
</thead>
<tbody>
<tr>
<td>30</td>
<td>50</td>
</tr>
</tbody>
</table>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<span class="glyphicon glyphicon-scale" aria-hidden="true"></span>
<label>应用统计</label>
</div>
<table class="table table-responsive">
<thead>
<tr>
<th>应用名</th>
<th>今日使用</th>
<th>近一个月使用量</th>
<th>联系人数</th>
</tr>
</thead>
<tbody>
<tr>
<td>招新管理</td>
<td>30</td>
<td>50</td>
<td>100</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</body>
</html>