I am working on a custom CMS and i HAVE to include the implementation of forms as HTML in a content object. I guess you can see where it is going, i can't use the 'form' rails helper that would add an authenticity token and if i hard code it,i would not be able to update when it will change.
ps: My current solution is to turn off forgery_protection on the controller to form is pointing to.
EDIT:
Is it safe to add the authenticity_token with Js to any form that doesn't have one?