File manager - Edit - /home/linknsbh/sabel-eltaqwa.com/assets/lfm/files/shares/events/thumbs/auth.php.tar
Back
home/linknsbh/public_html/auth.php 0000644 00000004257 15213354334 0013273 0 ustar 00 <?php session_start(); require_once 'config.php'; require_once 'functions.php'; header('Content-Type: application/json; charset=utf-8'); if ($_SERVER['REQUEST_METHOD'] !== 'POST') { jsonResponse(['success' => false, 'error' => 'طريقة الطلب غير صحيحة']); } // تسجيل الدخول if (isset($_POST['login'])) { $username = sanitize($_POST['username'] ?? ''); $password = $_POST['password'] ?? ''; if (empty($username) || empty($password)) { $_SESSION['error'] = 'جميع الحقول مطلوبة'; header('Location: index.php'); exit; } $result = loginUser($username, $password); if ($result['success']) { $_SESSION['user_id'] = $result['user']['id']; $_SESSION['username'] = $result['user']['username']; $_SESSION['fullname'] = $result['user']['fullname']; header('Location: index.php'); exit; } else { $_SESSION['error'] = $result['error']; header('Location: index.php'); exit; } } // التسجيل if (isset($_POST['register'])) { $fullname = sanitize($_POST['fullname'] ?? ''); $username = sanitize($_POST['username'] ?? ''); $email = sanitize($_POST['email'] ?? ''); $password = $_POST['password'] ?? ''; if (empty($fullname) || empty($username) || empty($email) || empty($password)) { $_SESSION['error'] = 'جميع الحقول مطلوبة'; header('Location: index.php?page=register'); exit; } if (strlen($password) < 6) { $_SESSION['error'] = 'كلمة المرور يجب أن تكون 6 أحرف على الأقل'; header('Location: index.php?page=register'); exit; } $result = registerUser($fullname, $username, $email, $password); if ($result['success']) { $_SESSION['user_id'] = $result['user_id']; $_SESSION['username'] = $username; $_SESSION['fullname'] = $fullname; header('Location: index.php'); exit; } else { $_SESSION['error'] = $result['error']; header('Location: index.php?page=register'); exit; } } jsonResponse(['success' => false, 'error' => 'إجراء غير معروف']); home/linknsbh/sabel-eltaqwa.com/core/config/auth.php 0000644 00000007042 15213402112 0016444 0 ustar 00 <?php return [ /* |-------------------------------------------------------------------------- | Authentication Defaults |-------------------------------------------------------------------------- | | This option controls the default authentication "guard" and password | reset options for your application. You may change these defaults | as required, but they're a perfect start for most applications. | */ 'defaults' => [ 'guard' => 'web', 'passwords' => 'users', ], /* |-------------------------------------------------------------------------- | Authentication Guards |-------------------------------------------------------------------------- | | Next, you may define every authentication guard for your application. | Of course, a great default configuration has been defined for you | here which uses session storage and the Eloquent user provider. | | All authentication drivers have a user provider. This defines how the | users are actually retrieved out of your database or other storage | mechanisms used by this application to persist your user's data. | | Supported: "session", "token" | */ 'guards' => [ 'web' => [ 'driver' => 'session', 'provider' => 'users', ], 'api' => [ 'driver' => 'token', 'provider' => 'users', 'hash' => false, ], 'admin' => [ 'driver' => 'session', 'provider' => 'admins', ], 'admin-api' => [ 'driver' => 'token', 'provider' => 'admins', ], ], /* |-------------------------------------------------------------------------- | User Providers |-------------------------------------------------------------------------- | | All authentication drivers have a user provider. This defines how the | users are actually retrieved out of your database or other storage | mechanisms used by this application to persist your user's data. | | If you have multiple user tables or models you may configure multiple | sources which represent each model / table. These sources may then | be assigned to any extra authentication guards you have defined. | | Supported: "database", "eloquent" | */ 'providers' => [ 'users' => [ 'driver' => 'eloquent', 'model' => App\User::class, ], // 'users' => [ // 'driver' => 'database', // 'table' => 'users', // ], 'admins' => [ 'driver' => 'eloquent', 'model' => App\Admin::class, ], ], /* |-------------------------------------------------------------------------- | Resetting Passwords |-------------------------------------------------------------------------- | | You may specify multiple password reset configurations if you have more | than one user table or model in the application and you want to have | separate password reset settings based on the specific user types. | | The expire time is the number of minutes that the reset token should be | considered valid. This security feature keeps tokens short-lived so | they have less time to be guessed. You may change this as needed. | */ 'passwords' => [ 'users' => [ 'provider' => 'users', 'table' => 'password_resets', 'expire' => 60, ], ], ];
| ver. 1.4 |
Github
|
.
| PHP 8.2.31 | Generation time: 0.63 |
proxy
|
phpinfo
|
Settings