forked from chetans9/core-php-admin-panel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
add_admin.php
executable file
·65 lines (51 loc) · 1.53 KB
/
add_admin.php
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
<?php
session_start();
require_once './config/config.php';
require_once 'includes/auth_validate.php';
//Only super admin is allowed to access this page
if ($_SESSION['admin_type'] !== 'super') {
// show permission denied message
echo 'Permission Denied';
exit();
}
if ($_SERVER['REQUEST_METHOD'] == 'POST')
{
$data_to_store = filter_input_array(INPUT_POST);
$db = getDbInstance();
//Check whether the user name already exists ;
$db->where('user_name',$data_to_store['user_name']);
$db->get('admin_accounts');
if($db->count >=1){
$_SESSION['failure'] = "User name already exists";
header('location: add_admin.php');
exit();
}
//Encrypt password
$data_to_store['password'] = password_hash($data_to_store['password'],PASSWORD_DEFAULT);
//reset db instance
$db = getDbInstance();
$last_id = $db->insert ('admin_accounts', $data_to_store);
if($last_id)
{
$_SESSION['success'] = "Admin user added successfully!";
header('location: admin_users.php');
exit();
}
}
$edit = false;
require_once 'includes/header.php';
?>
<div id="page-wrapper">
<div class="row">
<div class="col-lg-12">
<h2 class="page-header">Add User</h2>
</div>
</div>
<?php
include_once('includes/flash_messages.php');
?>
<form class="well form-horizontal" action=" " method="post" id="contact_form" enctype="multipart/form-data">
<?php include_once './forms/admin_users_form.php'; ?>
</form>
</div>
<?php include_once 'includes/footer.php'; ?>