-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patheditprofile.php
More file actions
39 lines (33 loc) · 1.18 KB
/
Copy patheditprofile.php
File metadata and controls
39 lines (33 loc) · 1.18 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
<html>
<head>
<?php
require('htmlhead.php');
echo '<title>' . $config['global']['PAGE_TITLE_BOT_NAME'] . ' - Edit User</title>';
if(!isSessionUserTeamMember($dbcon)) {
header('Location: index.php?error=nopermission');
exit();
}
if(!isset($_GET['id'])) {
header('Location: admincp.php?error=invalidid');
exit();
}
require('src/admin/DBQ.inc.php');
if(!isIdValidUser($dbcon, $_GET['id'])) {
header('Location: admincp.php?error=invaliduser');
exit();
}
?>
</head>
<body style="background-color:#f1f3f4;">
<?php require('header.php'); ?>
<div class="container" align="center">
<div class="card border-info mb-3">
<div class="card-body">
<h5 class="card-title">Administrator Edit Profile Feature</h5>
<p class="card-text">This feature is coming soon. Sorry about that!</p>
</div>
</div>
</div>
<?php require('footer.php'); ?>
</body>
</html>