Web page password, Ethernet Sheild

I want some help to configure a password on a web page.
I want to clear password in the search bar.

This is my code

if ((HTTP_req.indexOf("Password=LOL") > -1) ) 
      {
        Acces();
        digitalWrite(ledPin, LOW);                 // Mettre l'état de la LED à 0 sur la broche 2.
        EcrireLCD(0x80, LOW);                      // Positionnement du première ligne du LCD.
        LigneEcrire ("   Bienvenue    ");          // Ecriture dans la première.
        EcrireLCD (0xA8,LOW);                      // Positionnement pour écrire sur la deuxième ligne.                     
        LigneEcrire ("     Invite     ");          // Ecritire sur la deuxième ligne.  
        delay(1500);                               // Delai de 1.5 secondes
        digitalWrite(ledPin, HIGH);                // Mettre l'état de la Led à haut pour éteindre celle-ci.
        cl.println("<input type=\"button\" name=\"BT\" value=\"Ouverture\" onclick=\"submit();\">");             // Imprimer la bouton sur la page internet.
        cl.println("<input type=\"password\" name=\"Password\">");     
        Tapez();                                   // Envoyer la fonction Tapez 
    }
    else                                           // Sinon
      {              
        cl.println("<input type=\"button\" name=\"BT\" value=\"Ouverture\" onclick=\"submit();\">");    // Imprimer la checkbox sur la page.
        cl.println("<input type=\"password\" name=\"Password\">");                                  // Envoyer la fonction Tapez                       
    }
}

Thx for help

Capture.jpg

The only way to change what the client displays in the URL field is to redirect the client to a different page. That is NO different from how you would do it with a PC as client and server.

or send the password via POST so it won't show up in the url field.
OR send the pass via ajax.