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.
79 lines
1.8 KiB
79 lines
1.8 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 Emre Akay |
|
* @author Raphael "REJack" Jackstadt |
|
* @copyright 2014-2019 Emre Akay |
|
* @license https://opensource.org/licenses/MIT MIT License |
|
* @link https://github.com/emreakay/CodeIgniter-Aauth |
|
*/ |
|
|
|
namespace App\Controllers\Account; |
|
|
|
use CodeIgniter\Controller; |
|
use Config\Aauth as AauthConfig; |
|
use App\Libraries\Aauth; |
|
use Config\Services; |
|
|
|
/** |
|
* Aauth Accont/Register Controller |
|
* |
|
* @package CodeIgniter-Aauth |
|
*/ |
|
class Register 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()) |
|
{ |
|
if (! $this->aauth->createUser($input['email'], $input['password'], $input['username'])) |
|
{ |
|
$data['errors'] = $this->aauth->printErrors('<br />', true); |
|
} |
|
else |
|
{ |
|
$data['infos'] = $this->aauth->printInfos('<br />', true); |
|
} |
|
} |
|
|
|
if (session('errors')) |
|
{ |
|
$data['errors'] = isset($data['errors']) ? $data['errors'] . '<br />' . session('errors') : session('errors'); |
|
} |
|
|
|
if (session('infos')) |
|
{ |
|
$data['infos'] = isset($data['infos']) ? $data['infos'] . '<br />' . session('infos') : session('infos'); |
|
} |
|
|
|
$data['useUsername'] = $this->config->loginUseUsername; |
|
$data['cssFiles'] = [ |
|
'/assets/css/login.css' |
|
]; |
|
|
|
echo view('Account/Register', $data); |
|
} |
|
}
|
|
|