Hello,
I've being thinking whether or not using JWT as the authentication method for a standalone backend would be a good idea, There is JWE but then I'd have to create my own system which I'm alright with but I'd rather see my options first...
I planned to give users a token that contains their userid and raw password but thinking more on it I can't imagen a JWT token containg a raw password being a good idea ? What are your thoughts ?
To me it sounds fine because lets be honest in the end of the day a API token encrypted or not is still something you should not share, I guess I just wanna see if this sorta method is a good idea and in some way industry standard.

