I am getting the following warning in the JS tab of the Firefox web console (Ctrl + Shift + K)
A form was submitted in the windows-1252 encoding which cannot encode all Unicode characters, so user input may get corrupted. To avoid this problem, the page should be changed so that the form is submitted in the UTF-8 encoding either by changing the encoding of the page itself to UTF-8 or by specifying accept-charset=utf-8 on the form element. @
http://localhost:8080/myapp/login
The html does use the utf-8 encoding explicitly, like so:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />;
The html (actually Freemarker templates) files were previously on a Windows machine. So I recoded them to utf-8 using the recode utility as suggested here. But I still see the same warning.
What am I missing here?
There is no warning or error in the Chrome's developer tools utility (Ctrl + Shift + I)