I'm building a business application (in a private ethereum network) in which certain users should be able to perform some transactions.
The thing is that the blockchain authentication is hard to understand for business users, they are used to having username/password and the possibility to reset their passwords.
I was thinking of creating a web application in which users authenticate with username/password and in the server side of the webapp i have mapped the username with the ethereum account. This way each time a user makes a transaction, the backend unlocks the ethereum account from geth and performs the transaction on behalf this account.
Does anyone knows if this is a bad idea or not? Any possible consequences?
Thanks!