Hi Damola,
Me again…
You should realize that you don’t necessarily need a dynamic page in order to display the user’s dashboard. You can create a dashboard using a regular page. Then in the onReady() function of this page, perform a query based on the user who is currently logged in. The query will be on the Members collection and will be filtered using the _id (the user’s ID). This will result in the query returning that user’s record from the database. The fields can then be populated either manually, or automatically if you’ve used a dataset to connect the elements on the form to the collection.
It seems to me that this is what you want.
Yisrael