表单提交后隐藏输入的密码值

I have a login form.

It contains of 2 field: login and password.

<form method="post">
      <input type="text" name="login" value="">
      <input type="password" name="password" value="">

      <input type="submit" value="Login">
</form>

I want to hide entered value of password after form submit

see https://postimg.org/image/qvdftdnzl/

as you see user can look at entered password via firebug

In other words I want noone can get this value

Is it possible?

Thanks for help

You can't hide it from the browser, that's just how HTTP works. You could use HTTPS however.