Well, I have my application and every client will have their own database. As each client will have its database, it will also have its user table for login.
So I have
BancoEmpresa1 - User / Password: [email protected]/123
BancoEmpresa2 - User / Password: [email protected]/123
So, I have my login screen with the following fields:
Login / Email: Password:
How do I know how to direct the correct bank to my user? that user Vanessa type, go to their respective bank (BancoEmpresa1) and not fall into another bank?
[Edit] Technology used: Asp.net MVC + Entity Framework
[Edit2] Each client will have its own database and they will be hosted on my server and in order to access the application, they must pass through a single login screen that will also be on my server. Ex: www.sitedoRod.com/apps/login
and then direct each user to their respective application and database.