mecha-cms / x.panel

Control panel feature.
Other
6 stars 0 forks source link

Form Without Token Input #10

Closed taufik-nurrohman closed 5 years ago

taufik-nurrohman commented 6 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.

Before

<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>

After

<form action="/panel/::g::/page?token=b4d455" method="post">
  <input name="title" type="text">
  <button type="submit">Save</button>
</form>
taufik-nurrohman commented 5 years ago

https://github.com/mecha-cms/genome/issues/45#issuecomment-460022590