html - Text typed in text box shown in URL bar / generating profile page -
text typed in text box shown in url bar including password. way fix not show on url bar? tried googling results irrelevant.
it looks this:
login_page.html?email=asdasdasd&password=asdasdasd
you used method="get" in form this:
<form method="get"> try using post method instead this:
<form method="post"> then, if you're using php, example, on server side inputs of form, you'll have make sure you're looking super global $_post instead of $_get.
Comments
Post a Comment