A PHP Error was encountered

Severity: Notice

Message: Trying to access array offset on value of type null

Filename: libraries/Flexi_auth_lite.php

Line Number: 194

Backtrace:

File: /home/qeyafahc/public_html/application/libraries/Flexi_auth_lite.php
Line: 194
Function: _error_handler

File: /home/qeyafahc/public_html/application/controllers/Auth.php
Line: 32
Function: is_logged_in_via_password

File: /home/qeyafahc/public_html/index.php
Line: 315
Function: require_once

Register Account

User registration is a core requirement for any site that is to allow anonymous users to register for an account within the site.

The data collected and saved during this process will always vary from site to site, but typically comes down to two primary types, data that is essential for user authentication and then user profile data.

The essential user authentication data consists of information like a users email address and password that are required by users to securely log into their account. In addition to this, the flexi auth library can also automatically save and manage user data like IP addresses, last login dates etc.

As for the user profile data, flexi auth allows you to save and relate whatever data you require to the users account, whether that data is all stored in the same table, or via multiple tables. The design of the database schema is up to you.

Register Account

Personal Details
Contact Details
Login Details
  • For this demo, the following validation settings have been defined:
    Password length must be more than 8 characters in length.
    Only alpha-numeric, dashes, underscores, periods and comma characters are allowed.
Register
  • Important Note
    The data saved via this demo is available for anyone else using the demo to see, therefore, you may wish to only test this registration page via your local development environment. All data that is saved via this demo, is completely wiped every few hours.

User Registration Demo | Flexi Auth | A User Authentication Library for CodeIgniter