-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcontrol_panel.php
More file actions
155 lines (96 loc) · 3.9 KB
/
Copy pathcontrol_panel.php
File metadata and controls
155 lines (96 loc) · 3.9 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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<?php
/*
* Copyright (c) 2016-2017 Barchampas Gerasimos <http://makbox.co.nf/>
* Makbox is a personal (staas) cloud.
*
* Makbox is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
*
* Makbox is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License, version 3,
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
session_start();
?>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="/control_panel/css/control.css">
</head>
<body id="body">
<a name="top"></a>
<div align="center"> <h2 id="header"> Control panel </h2> </div>
</body>
</html>
<?php
if (!isset($_SESSION['login']))
{
header("Location: index.php");
}
else
{
echo '<div align="center">
<table id="table2">
<div id="a2"> </div>
<tr>
<td id="th"> Database <br><img src="/control_panel/photos/database.ico" height="80" width="90"> </td>
<td> <a href="accounts_users.php" id="a"> Accounts users <a/> </td>
<td> <a href="server_messages.php" id="a"> Server messages </a></td>
<td> <a href="contact_for_users.php" id="a"> Contact for users </a> </td>
<td> <a href="details_users.php" id="a"> Details users </a> </td>
</tr>
<tr>
<td> <hr> </td> <td> <hr> </td> <td> <hr> </td> <td> <hr> </td> <td> <hr> </td>
</tr>
<tr>
<td id="th"> Users data <br><img src="/control_panel/photos/users.ico" height="80" width="70"> </td>
<td> <a href="transfer_archives.php" id="a"> Transfer archives <a/> </td>
<td> <a href="" id="a"> Cloud archives </a></td>
<td> <a href="" id="a"> Chat and forum messages </a> </td>
<td> <a href="" id="a"> Voice messages </a> </td>
</tr>
<tr>
<td> <hr> </td> <td> <hr> </td> <td> <hr> </td> <td> <hr> </td> <td> <hr> </td>
</tr>
<tr>
<td id="th"> Network <br><img src="/control_panel/photos/network.png" height="80" width="80"> </td>
<td> <a href="block_ip_address.php" id="a"> Block ip address <a/> </td>
<td> <a href="" id="a"> Block user </a></td>
<td> <a href="" id="a"> All cookies </a> </td>
<td> <a href="" id="a"> All domains </a> </td>
</tr>
<tr>
<td> <hr> </td> <td> <hr> </td> <td> <hr> </td> <td> <hr> </td> <td> <hr> </td>
</tr>
<tr>
<td id="th"> Settings <br><img src="/control_panel/photos/settings.png" height="80" width="80"> </td>
<td> <a href="delete_user.php" id="a"> Delete user <a/> </td>
<td> <a href="storage_user.php" id="a"> Storage user <a/> </td>
<td> <a href="" id="a"> Choose password <a/> </td>
<td> <a href="logout.php" id="a"> Sign out <a/> </td>
</tr>
<tr>
<td> <hr> </td> <td> <hr> </td> <td> <hr> </td> <td> <hr> </td> <td> <hr> </td>
</tr>
<tr>
<td> </td> <td> </td>
<td id="a3"> <h3> Administrator system managment </h3> </td>
<td> </td> <td> </td>
</tr>
</table>
</div>';
echo "<br>" ."<br>";
}
/* <tr>
<td> <hr> </td> <td> <hr> </td> <td> <hr> </td> <td> <hr> </td> <td> <hr> </td>
</tr>
*/
?>