I'm able to see my credentials here in this picture which is fb's form data
I don't know if that is supposed to be like that or a problem of browser
But for my website, I don't want this in ruby on rails or java.
I'm able to see my credentials here in this picture which is fb's form data
I don't know if that is supposed to be like that or a problem of browser
But for my website, I don't want this in ruby on rails or java.
What you are seeing is your brower's view of the data. Of course it needs to see this data because it needs to process it. Encrypting it so that the browser cannot see it does not make sense.
When it gets transmitted, it goes over a TLS connection which encrypts everything, so no one can see the contents.
For your project, you can do the same thing. If you are concerned, you might be able to obfuscate the data, like encoding it, but ultimately, if someone has access to the user's browser, then they can see everything anyway.