Comment on Letting users fill out a form before notifying them that they need to sign in to submit it is scummy and needs to end.

<- View Parent
vrek@programming.dev ⁨2⁩ ⁨days⁩ ago

You do. When you press submit it sends a http post message with your information. They are not reading your keyboard input on a website. You can verify this with wireshark and any website with a form.

Yeah some places with apps MAY do as you say like Facebook such with full permissions to your phone. That said its still sent as a http post request, just recorded locally and then sent as a giant packet.

That’s why they have the submit button. Otherwise they would have way too many transactions. “a” then “d” then “a” and then “m” and have to concatinate them on the server plus initial packet saying they are getting a first name. Then another that you stopped focusing on first name.

Now how do you handle if I typed adan and go back to correct it? Some apps might do this but general web development(99.999%) doesn’t.

source
Sort:hotnewtop