You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
1.7 KiB
73 lines
1.7 KiB
<?php |
|
/** |
|
* CodeIgniter-Aauth |
|
* |
|
* Aauth is a User Authorization Library for CodeIgniter 4.x, which aims to make |
|
* easy some essential jobs such as login, permissions and access operations. |
|
* Despite ease of use, it has also very advanced features like grouping, |
|
* access management, public access etc.. |
|
* |
|
* @package CodeIgniter-Aauth |
|
* @author Magefly Team |
|
* @copyright 2014-2017 Emre Akay |
|
* @copyright 2018 Magefly |
|
* @license https://opensource.org/licenses/MIT MIT License |
|
* @link https://github.com/magefly/CodeIgniter-Aauth |
|
*/ |
|
|
|
namespace App\Controllers\Account; |
|
|
|
use CodeIgniter\Controller; |
|
use Config\Aauth as AauthConfig; |
|
use App\Libraries\Aauth; |
|
use Config\Services; |
|
|
|
/** |
|
* Aauth Accont/Login Controller |
|
* |
|
* @package CodeIgniter-Aauth |
|
*/ |
|
class Login extends Controller |
|
{ |
|
/** |
|
* Constructor |
|
*/ |
|
public function __construct() |
|
{ |
|
$this->config = new AauthConfig(); |
|
$this->aauth = new Aauth(); |
|
$this->request = Services::request(); |
|
helper('form'); |
|
} |
|
|
|
/** |
|
* Index |
|
* |
|
* @return void |
|
*/ |
|
public function index() |
|
{ |
|
if ($input = $this->request->getPost()) |
|
{ |
|
$identifier = ($this->config->loginUseUsername ? $input['username'] : $input['email']); |
|
|
|
if (! $this->aauth->login($identifier, $input['password'], (isset($input['remember']) ? true : false))) |
|
{ |
|
$data['errors'] = $this->aauth->printErrors('<br />', true); |
|
} |
|
else |
|
{ |
|
$this->response->redirect('/account'); |
|
} |
|
} |
|
|
|
$data['useUsername'] = $this->config->loginUseUsername; |
|
$data['cssFiles'] = [ |
|
'/assets/css/login.css' |
|
]; |
|
|
|
echo view('Templates/HeaderBlank', $data); |
|
echo view('Account/Login', $data); |
|
echo view('Templates/FooterBlank', $data); |
|
} |
|
}
|
|
|