Closed taufik-nurrohman closed 5 years ago
In the future, editor form must have token value included in the action destination, so we can remove the <input name="token" type="hidden"> input.
<input name="token" type="hidden">
<form action="/panel/::g::/page" method="post"> <input name="title" type="text"> <button type="submit">Save</button> <input name="token" type="hidden" value="b4d455"> </form>
<form action="/panel/::g::/page?token=b4d455" method="post"> <input name="title" type="text"> <button type="submit">Save</button> </form>
https://github.com/mecha-cms/genome/issues/45#issuecomment-460022590
In the future, editor form must have token value included in the action destination, so we can remove the
<input name="token" type="hidden">
input.Before
After