How can i access the post data from the signup-form?
For example I will add a sur and a prename to the users profile:
newUser.local.email = email;
newUser.local.password = newUser.generateHash(password);
newUser.local.prename = prename; //how can i get it from my form?
newUser.local.surname = surname;
newUser.role = false;
newUser.activated = false;
How can i access the post data from the signup-form?
For example I will add a sur and a prename to the users profile: