database And dertory update
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
require "../../../bootstrap.php";
|
||||
|
||||
use Backend\Models\Group;
|
||||
use Backend\Models\Password;
|
||||
|
||||
session_start();
|
||||
if(isset($_SESSION['Admin'])){
|
||||
if(isset($_POST['RestPassword'])){
|
||||
$group = Group::find($_POST['groupId']);
|
||||
if($group){
|
||||
$group->password->password = password_hash("Aa123456&", PASSWORD_DEFAULT);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user