I created an HTML form that will send some parameters to a page, in that form it has a parameter set to hidden which is the token.
The token has several characters "%" in the middle of it and I noticed that on the page where the TOKEN INVALID error returned after submitting the form is added in the URL the number 25 after each "%".
Has anyone ever had this kind of problem?
Here's an example:
<form action="url" method="get">
<input type="hidden" name="token" value="676%anbh%akjk%31">
<input type="text" name="nome">
<input type="submit">
</form>
The token 676%anbh%akjk%31
was submitted but in the url it is as url?token=676%25anbh%25akjk%2531
note that it has the number 25
after each %
.