I am creating an app where users will be given the opportunity to register with email, password, and all the other common stuff. But it is imperative that the user can only register once. Each user should only be able to register one time, with one email.
I am already using the unique device id to ensure that the user can only create one account for the device they are on. So for example if they reinstall the app, and try to create a new account with a different email, my server will detect that their device id has already been registered.
But my problem is this: if a user who already has an account goes to install the app on a different device, they would be able to register again using a different email. That is bad, because now one user has two accounts; and for what Im doing I can't allow this.
Is there any foreseeable way to stop situation like this? (thanks in advance)