Register Account

User registation 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.