insert('zz_logs', [ 'username' => $username, 'ip' => get_client_ip(), 'stato' => Auth::getStatus()['failed']['code'], ]); $utente = User::where('username', $username)->where('email', $email)->first(); if (!empty($utente)) { $utente->reset_token = secure_random_string(); $utente->save(); $n = new Notifications\EmailNotification(); $n->setTemplate('Reset password', $utente->id); $n->setReceivers($utente->email); $n->send(); } //$message_email = substr($email, 0, 2).str_repeat('*', strlen($email)-8).substr($email, -6); flash()->info(tr("Se le informazioni inserite corrispondono ai dati di un utente, riceverai a breve un'email all'indirizzo collegato").'.'); redirect(ROOTDIR.'/index.php'); break; case 'update': $password = post('password'); $utente = User::where('reset_token', $token)->first(); if (!empty($utente)) { $utente->password = $password; $utente->reset_token = null; $utente->save(); } flash()->info(tr('Password cambiata!')); redirect(ROOTDIR.'/index.php'); break; } $pageTitle = tr('Reimpostazione password'); include_once App::filepath('include|custom|', 'top.php'); // Controllo se è una beta e in caso mostro un warning if (Auth::isBrute()) { echo '
'.tr('Sono stati effettuati troppi tentativi di accesso consecutivi!').'
'.tr('Tempo rimanente (in secondi)').': '.(Auth::getBruteTimeout() + 1).'