Hi Admin,
when I fill a form and I refresh the page, I see the values of the input field are still there even if the real values of the input fields could be different.
This is due to the browser. The browser shows what it is the last value set in the input field, and it doesn't consider what the HTML contains.
solutions:
1) use the attribute autocomplete="off" in the input fields
2) set cookies for the input fields
3) use some javascript to check the real value of the input fields and what it is shown to the user.