Update for BeWellWell my account en media_upload

This commit is contained in:
“VeLiTi”
2025-08-29 15:01:30 +02:00
parent 010b23b0e5
commit f8e089ffcd
20 changed files with 603 additions and 22 deletions

View File

@@ -96,8 +96,8 @@ elseif ($command == 'login'){
if (count($account) != 0){
//CHECK NUMBER OF LOGIN ATTEMPTS IS BELOW 5
if($account['login_count'] < 5 || $account['isverified'] == 0 ){
//CHECK NUMBER OF LOGIN ATTEMPTS IS BELOW 5 and account isverified
if($account['login_count'] < 5 && $account['isverified'] == 1 ){
// If account exists verify password
if ($account && password_verify($post_content['password'], $account['password'])) {