-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmine.php
More file actions
51 lines (39 loc) · 1.06 KB
/
Copy pathmine.php
File metadata and controls
51 lines (39 loc) · 1.06 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
<?php
include_once("functions.php");
require_login();
$activeSection = 'dashboard';
$pageTitle = "Accounts I Created";
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="mine.php">
<i class="fa fa-list"></i> Accounts I Created
</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 I Created</h3>
</div>
<div class="island-body">
<p>These are the accounts you have created, with the newest at the top. If you're looking for something specific, you can use the search bar above to find it.</p>
<?php
$accounts = getMyAccounts();
foreach($accounts as $account) {
outputUserPanel($account);
}
?>
</div>
</div>
<?php include("footer.php"); ?>