forked from ndlibersa/usage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.php
More file actions
62 lines (45 loc) · 1.43 KB
/
admin.php
File metadata and controls
62 lines (45 loc) · 1.43 KB
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
<?php
$pageTitle = 'Administration';
include 'templates/header.php';
if ($user->isAdmin()){
?>
<table class="headerTable">
<tr><td>
<span class="headerText">Users</span> <span id='span_User_response' class='redText'></span>
<br /><span id='span_newUser' class='adminAddInput'><a href='ajax_forms.php?action=getAdminUserUpdateForm&height=196&width=248&modal=true' class='thickbox' id='expression'>add new user</a></span>
<br /><br />
<div id='div_User'>
<img src = "images/circle.gif">Loading...
</div>
</td></tr>
</table>
<br />
<br />
<table class="headerTable">
<tr><td>
<span class="headerText">Email addresses for logs</span> <span id='span_EmailAddress_response'></span>
<br /><span id='span_newEmailAddress' class='adminAddInput'><a href='ajax_forms.php?action=getLogEmailAddressForm&height=122&width=238&modal=true' class='thickbox'>add new email address</a></span>
<br /><br />
<div id='div_emailAddresses'>
<img src = "images/circle.gif">Loading...
</div>
</td></tr>
</table>
<br />
<br />
<table class="headerTable">
<tr><td>
<span class="headerText">Outlier Parameters</span> <span id='span_Outlier_response'></span>
<br /><br />
<div id='div_outliers'>
<img src = "images/circle.gif">Loading...
</div>
</td></tr>
</table>
<br />
<br />
<script type="text/javascript" src="js/admin.js"></script>
<?php
}
include 'templates/footer.php';
?>