I have a simple form which asks for a password as such:
<form action="destination.html" method="POST">
<input type="password" name="password">
<input type="submit">
</form>
When the user hits the submit button, the password will be displayed in the query string like destination.html/?password=p@ssw0rd
, which is definitely dangerous. Any ways to hide the password upon submission? Thanks.