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
}
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
}