User registration form

0
Hi, I have created a registration form by using data view which is in turn associated with ‘System.user’ entity. Among the fields, the password field field (input box) is not editable. It shows a disabled input box in front end; how can I make this field editable ? Thanks!  
asked
1 answers
3

Hi Iqbal,

  Mendix System module security means that the password field is never directly writable by a user on the front end. That password can only be set by the system. To facilitate someone creating a password, consider using a non-persistent entity with a ‘password’ and ‘re-enter password’ field that is then compared and set to be the password of the system module using a microflow.

  Check out how the ‘change password’ and ‘new account’ workflows work in the Administration module in the app store for an example of exactly how this can work:

https://appstore.home.mendix.com/link/app/23513/Mendix/Administration-module

 

answered