Hi Dominique,
Glad to hear you're getting along with Dataface.
You can add a registration feature by adding the following to the [_auth] section of your conf.ini file
allow_register=1
This will give the user a "Register" link on the login page where they can click to register.
If the user clicks this link they will essentially be shown a "new record" form on the users table.Ê In order for this to work, you have to make sure that ALL users have the 'new' permission on the users table.Ê You would probably want to prohibit access to certain fields like the user's role.
You would also want to create a limited default role for new users called "UNVERIFIED" or something so that users can't do anything until they've been verified.
The next version contains an automatic email verification step that verifies a user by sending them an email.Ê The user account is not created then, until the user is verified.
-Steve