Individual Member Area

I am not sure if this is possible but based on other tutorials I have seen on Youtube I am hopeful that it is. Using a database of my clients, I would like to have an area for each of them that is password protected and we can send messages to each other.

They would need to sign up and enter their own password that is saved on the DB. Using a dynamic page to create a template for all of the clients and then a comments or message function where the messages are stored so I can look back over them.

I have the same request. Hope someone can help.

Hi,

Technically it is possible to create such a system.
However, storing plain text password in a collection is highly discouraged. Therefore you will have to implement some sort of a password encryptor and decryptor mechanism to safely store user passwords.
In addition, there is no option at the moment to configure an input box to hide the text that is being typed,

If you base your system on the Creating Member Pages article you will not have to deal with storing or encrypting passwords since it is all dealt using the built in user account system.

Creating a messaging system can be implemented in a number of ways.
For example by setting a form that displays the list of members (from a members collection) and then submits the form to a ‘messages’ list. Then the messages can be displayed on a specific user’s dynamic page by filtering by his username.
https://www.wix.com/code/home/tutorials-custom-form

The Create Member Pages and Custom Form articles should provide you with a solid place to start.