-
Notifications
You must be signed in to change notification settings - Fork 2
/
account.php
53 lines (45 loc) · 1.01 KB
/
account.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
/***
* author @ [email protected]
***/
<?
define('INMT', true);
define('CURRENT_PAGE', 'account');
include 'lib.php';
$data = api_info();
showHead();
//PRINT CAMPS
?>
<h2>Account Status</h2>
<table width=100%>
<thead>
<tr>
<th rowspan=2 width=150 class="left">Name</th>
<th rowspan=2 width=150>Email</th>
<th rowspan=2 width=50>Active</th>
<th colspan=4>Clicks</th>
<th rowspan=2 width=100>Credits Remaining</th>
</tr>
<tr>
<th width=50>This Month</th>
<th width=50>Last Month</th>
<th width=50>YTD</th>
<th width=50>Total</th>
</tr>
</thead>
<tbody>
<tr>
<td class="left"><?= $data['account']['name'] ?></td>
<td class="center"><?= $data['account']['email'] ?></td>
<td class="center"><?= $data['account']['active'] ?></td>
<td class="center"></td>
<td class="center"></td>
<td class="center"></td>
<td class="center"><?= $data['data']['total'] ?></td>
<td class="center"><?= 'BETA'; //$data['account']['credits']; ?></td>
</tr>
</tbody>
</table>
<br/><br/>
<?
showTail();
?>