-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprocessed.php
More file actions
50 lines (40 loc) · 1.03 KB
/
Copy pathprocessed.php
File metadata and controls
50 lines (40 loc) · 1.03 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
<?php
include_once("functions.php");
require_login();
$activeSection = 'dashboard';
$pageTitle = "Create Account";
require("header.php");
?>
<ul class="breadcrumb">
<li>
<a href="index.php">
<i class="fa fa-home"></i> Home
</a>
</li>
<li class="last">
<a href="#">
<i class="fa fa-gear"></i> Accounts Processed
</a>
</li>
<li class="help">
<a href="help.php">
<i class="fa fa-question-circle"></i> Help
</a>
</li>
</ul>
<div class="island">
<div class="island-header">
<h3>Accounts Processed</h3>
</div>
<div class="island-body">
<?php
foreach($_SESSION['lastprocess'] as $processeduser) {
echo '<div class="alert alert-'.$processeduser['colour'].'">'.$processeduser['status'].'</div>';
if($processeduser['username']!==false) {
outputUserPanel($processeduser['username']);
}
}
?>
</div>
</div>
<?php include("footer.php"); ?>