Hi Chris! Nice post! I have a question. When you register in the app and not verify the email, how do you control when other user wants to register in the app but with the same email that you previously registered but not verified it?
One thing I'll suggest is, once a user post BioData for account registration, check if mail exist :
If (mail_exist)
**is_mail_verified ?** {ask user to confirm identity, by sending verification link to mail} : { redirect to login }
}
else{
register user and verify email
}
Hi Chris! Nice post! I have a question. When you register in the app and not verify the email, how do you control when other user wants to register in the app but with the same email that you previously registered but not verified it?
If the email is "in use" but not verified, the email's user can the recover password or send another code activation to its email.
Thank you! I solved that problem very similar to what you say.
One thing I'll suggest is, once a user post BioData for account registration, check if mail exist
If (mail_exist){
is_mail_verified ? {ask user to confirm identity, by sending verification link to mail} : { redirect to login }
}
else{
register user and verify email
}
One thing I'll suggest is, once a user post BioData for account registration, check if mail exist :
`
One thing I'll suggest is, once a user post BioData for account registration, check if mail exist :
If (mail_exist)
is_mail_verified ? {ask user to confirm identity, by sending verification link to mail} : { redirect to login }
}
else{
register user and verify email
}