Hi,
I need the user to be able to login before his email is verified. Here is the story : when the user creates an account I’d like them to be able to continue their registration (filling additional forms) without having to immediately leave the app and verify their account. The user wouldn’t have access to other features for the time being.
I thought of initiating the user creation process only when all the forms are filled. The main problem with this idea is that the user would be forced to fill all the forms in one go and I’d like them to be able to leave and comeback whenever they want. Think of this registration like a process with multiple steps.
So, there we are. The user first creates their account with their login credentials. Ideally at this point I’d like to redirect them to more forms and progressively add information to the user document. But they can’t safely interact with their account without being logged in.
Is there any way this is possible with the most recent meteor accounts packages?