1
I need to pass information directly to the browser but the result of the code is always returned as https://xxx.com/? cli=value need to return in the URL only the value contained in the input without the characters "? cli="
in that way https://xxx.com/value
Follow the current code:
<form method="GET" action="https://xxx.com/"&cli>
Cliente: <input type="text" name="cli" placeholder="Digite seu código">
<input type="submit" value="Acessar">
</form>
Will need to use javascript...
– tvdias